/* ==============================================
   MODERN LANDING PAGE STYLES
   ============================================== */

/* Hero Modern Section */
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001f4d 0%, #002a5c 50%, #001f4d 100%);
}

/* Image de fond avec blur */
.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  opacity: 0.8;
  z-index: 0;
}

/* Overlay sombre pour améliorer la lisibilité */
.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.65) 0%,
    rgba(0, 42, 92, 0.55) 50%,
    rgba(0, 31, 77, 0.65) 100%
  );
  z-index: 0;
}

.hero-modern-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff8c00, transparent);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-gradient-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4a90e2, transparent);
  bottom: -10%;
  right: 10%;
  animation-delay: 7s;
}

.hero-gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff6b00, transparent);
  top: 50%;
  right: -5%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-modern-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-modern-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--color-secondary);
}

.hero-modern-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-modern-highlight {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-modern-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-modern-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-modern-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-modern-visual {
  position: relative;
  height: 500px;
}

.hero-visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-visual-card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.hero-visual-card-2 {
  top: 45%;
  right: 10%;
  animation-delay: 2s;
}

.hero-visual-card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-visual-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-visual-title {
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.hero-visual-desc {
  font-size: 0.85rem;
  color: #666;
}

.hero-visual-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.hero-visual-main img {
  max-width: 80%;
  height: auto;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Section Headers */
.section-header-modern {
  text-align: left;
  margin-bottom: 4rem;
}

.section-header-modern.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 140, 0, 0.1);
  color: var(--color-secondary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title-modern {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.title-highlight {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #667085;
  max-width: 700px;
}

.section-header-modern.text-center .section-subtitle-modern {
  margin: 0 auto;
}

/* Services Modern Section */
.services-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-modern-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
  text-decoration: none;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.service-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 31, 77, 0.15);
}

.service-modern-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.9),
    rgba(0, 31, 77, 0.7)
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-modern-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), #003366);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modern-placeholder i {
  font-size: 2rem;
}

.service-modern-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.service-modern-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.service-modern-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-modern-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-modern-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.service-modern-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-modern-desc {
  color: #667085;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-modern-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

.service-modern-link i {
  transition: transform 0.3s ease;
}

.service-modern-card:hover .service-modern-link i {
  transform: translateX(5px);
}

/* Why Us Modern Section */
.why-us-modern {
  padding: 6rem 0;
  background: white;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-us-features {
  display: grid;
  gap: 2rem;
  margin: 2.5rem 0;
}

.why-us-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-us-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1),
    rgba(255, 140, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.why-us-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.why-us-feature-content p {
  color: #667085;
  line-height: 1.6;
  margin: 0;
}

.why-us-visual {
  position: relative;
  height: 600px;
}

.why-us-image-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.05),
    rgba(255, 140, 0, 0.05)
  );
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(0, 31, 77, 0.1);
}

.why-us-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  gap: 1rem;
}

.why-us-image-placeholder i {
  font-size: 5rem;
  opacity: 0.3;
}

.why-us-image-placeholder p {
  font-weight: 700;
  font-size: 1.25rem;
  opacity: 0.5;
}

.why-us-stats-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: grid;
  gap: 1.5rem;
  min-width: 250px;
}

.why-us-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-us-stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.why-us-stat-label {
  font-size: 0.85rem;
  color: #667085;
  font-weight: 600;
}

/* Fleet Modern Section */
.fleet-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.fleet-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fleet-modern-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.fleet-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 31, 77, 0.12);
  border-color: rgba(255, 140, 0, 0.2);
}

.fleet-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1),
    rgba(255, 140, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.fleet-modern-card:hover .fleet-card-icon {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  color: white;
  transform: scale(1.1);
}

.fleet-modern-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.fleet-modern-card p {
  color: #667085;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fleet-card-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 140, 0, 0.1);
  color: var(--color-secondary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Locations Modern Section */
.locations-modern {
  padding: 6rem 0;
  background: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.location-card {
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.03),
    rgba(255, 140, 0, 0.03)
  );
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(0, 31, 77, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.05),
    rgba(255, 140, 0, 0.05)
  );
}

.location-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.location-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.location-desc {
  color: #667085;
  margin-bottom: 1rem;
}

.location-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-top: auto;
}

.locations-map {
  margin-top: 3rem;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.05),
    rgba(255, 140, 0, 0.05)
  );
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(0, 31, 77, 0.2);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.3;
}

.map-placeholder p {
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.5;
}

/* References Modern Section */
.references-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  overflow: hidden;
}

.references-marquee {
  margin-top: 3rem;
  overflow: hidden;
}

.references-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reference-item {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.reference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.reference-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.reference-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.reference-text span {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.reference-item:hover.reference-text span {
  opacity: 1;
  color: var(--color-secondary);
}

/* CTA Modern Section */
.cta-modern {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #001f4d 0%, #002a5c 50%, #001f4d 100%);
  overflow: hidden;
}

.cta-modern-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.cta-gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff8c00, transparent);
  top: -20%;
  right: -10%;
}

.cta-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4a90e2, transparent);
  bottom: -20%;
  left: -10%;
}

.cta-modern-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  background: rgba(255, 140, 0, 0.15);
  border: 2px solid rgba(255, 140, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-secondary);
  animation: pulse 2s ease-in-out infinite;
}

.cta-modern-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-modern-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.cta-modern-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.45);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.cta-contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.cta-contact-item i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

/* Utility Classes */
.btn-modern-primary,
.btn-modern-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-modern-primary {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.btn-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.btn-modern-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-modern-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 31, 77, 0.2);
}

.section-cta-center {
  text-align: center;
  margin-top: 3rem;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #667085;
}

.empty-state i {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.empty-state h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-modern-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-modern-visual {
    height: 400px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-modern-stats {
    gap: 2rem;
  }

  .services-modern-grid {
    grid-template-columns: 1fr;
  }

  .fleet-modern-grid,
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .hero-modern-actions {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-modern-actions {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-modern-title {
    font-size: 2rem;
  }

  .section-title-modern {
    font-size: 1.75rem;
  }

  .hero-modern-visual {
    height: 300px;
  }

  .hero-visual-card {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .hero-visual-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .why-us-stats-card {
    right: 1rem;
    bottom: 1rem;
    min-width: 200px;
  }
}


/* ==============================================
   WHY CHOOSE US - REDESIGNED BENTO GRID
   ============================================== */

.why-choose-us {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  overflow: hidden;
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.why-choose-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.why-choose-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent);
  top: -15%;
  right: -10%;
}

.why-choose-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 31, 77, 0.2), transparent);
  bottom: -10%;
  left: -5%;
  animation-delay: 10s;
}

.advantages-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.advantage-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 31, 77, 0.08);
  border: 1px solid rgba(0, 31, 77, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 31, 77, 0.12);
  border-color: rgba(255, 140, 0, 0.3);
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), #ff6b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card--hero {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--color-primary), #002a5c);
  color: white;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.advantage-card--hero::before { display: none; }

.advantage-card--hero .advantage-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.advantage-card--hero h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.advantage-card--hero p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.advantage-stats-inline {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

.advantage-stat-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.advantage-stat-mini .stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-secondary);
}

.advantage-stat-mini .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.advantage-card--map {
  grid-column: span 2;
  min-height: 280px;
  padding: 0;
}

.advantage-card--map .advantage-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 31, 77, 0.85), rgba(0, 31, 77, 0.7));
  z-index: 1;
}

.advantage-card--map .advantage-card-content {
  padding: 2rem;
  color: white;
}

.advantage-card--map h3,
.advantage-card--map p {
  color: white;
}

.advantage-card-icon--light {
  width: 50px;
  height: 50px;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.chip--light {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card--medium .advantage-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.advantage-card--medium:hover .advantage-card-icon {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  color: white;
  transform: scale(1.1);
}

.advantage-card--medium h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.advantage-card--medium p {
  color: #667085;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.advantages-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 31, 77, 0.06);
  border: 1px solid rgba(0, 31, 77, 0.06);
}

.advantage-stat-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.advantage-stat-block .advantage-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.advantage-stat-info {
  display: flex;
  flex-direction: column;
}

.advantage-stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
}

.advantage-stat-text {
  font-size: 0.85rem;
  color: #667085;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .advantages-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-card--hero,
  .advantage-card--map {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .advantages-bento {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .advantage-card--hero,
  .advantage-card--map,
  .advantage-card--medium {
    grid-column: span 1;
  }
  .advantage-card--hero {
    flex-direction: column;
    gap: 1.5rem;
  }
  .advantages-stats-bar {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
