:root {
  --bg: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.88);
  --text: #111;
  --text-invert: #fff;
  --muted-invert: rgba(255, 255, 255, 0.75);
  --accent: #e50914;     /* RED */
  --accent-dark: #b7070f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}
a:hover, a:focus, a:active {
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  background: var(--bg);
  color: var(--text-invert);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
}

.brand-title {
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #fff;
  color: var(--accent) !important;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.92);
}

/* HERO / CAROUSEL */
.hero-wrap {
  position: relative;
}

#myCarousel {
  background: #000;
}

.hero-img {
  width: 100%;
  height: 760px;
  filter: contrast(1.05) saturate(1.05);
}

/* Overlay box like reference */
.hero-overlay {
  position: absolute;
  right: 7%;
  top: 18%;
  width: min(560px, 90%);
  background: var(--panel);
  color: var(--text);
  padding: 28px 28px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hero-overlay h1 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-overlay ul {
  margin: 0 0 18px 18px;
}

.hero-overlay li {
  margin: 8px 0;
  font-size: 15px;
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 14px;
}

.call-label {
  font-weight: 800;
  color: var(--accent);
}

.call-number {
  color: #0a58ca;
  font-weight: 800;
  text-decoration: none;
}

.call-number:hover {
  text-decoration: none !important;
}

.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  appearance: none !important;

}

.hero-btn:hover,
.hero-btn:focus,
.hero-btn:active,
.hero-btn:focus-visible {
  background: var(--accent-dark);
  text-decoration: none !important;
  color: #fff !important;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration-line: none !important;
}

/* SECTIONS */
.section {
  padding: 70px 0;
  background: #0b0b0b;
}

.section-alt {
  background: #111;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.section p, .section a {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* FOOTER */
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 26px 10px;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .main-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-img {
    height: 480px;
  }

  .hero-overlay {
    position: static;
    width: auto;
    margin: -60px auto 0;
  }
}

@media (max-width: 576px) {
  .brand-text {
    display: none;
  }

  .hero-img {
    height: 380px;
  }

  .hero-overlay h1 {
    font-size: 22px;
  }
}

/* FLIP CARD */
.flip-card {
  display: block;
  perspective: 1200px;
  text-decoration: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 220px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FRONT (current look) */
.flip-card-front {
  background: #0b0b0b;
  color: #fff;
}

.flip-card-front h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.flip-card-front p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* BACK */
.flip-card-back {
  background: var(--accent); /* RED */
  color: #fff;
  transform: rotateY(180deg);
}

.flip-card-back h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.flip-card-back p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Button */
.flip-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--accent);
  font-weight: 800;
  width: fit-content;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

/* Hover polish */
.flip-card:hover {
  cursor: pointer;
}


/* ========== FLEET FEATURE BLOCK (like reference) ========== */

.fleet-feature {
  background: radial-gradient(circle at top left, #141414 0%, #000 65%);
}

.fleet-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.fleet-feature-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.fleet-feature-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.fleet-feature-title {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.fleet-feature-text {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.fleet-feature-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fleet-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.fleet-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.fleet-btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  text-decoration: none;
  color: #fff;
}

.fleet-btn-solid {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}

.fleet-btn-solid:hover {
  background: var(--accent-dark);
  text-decoration: none;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .fleet-feature-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .fleet-feature-img {
    height: 280px;
  }
}