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

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.landing-page {
  width: 100%;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.company-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #009fe3;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #009fe3;
}

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

.reserve-btn-header {
  background: #009fe3;
  color: white;
  padding: 0.625rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reserve-btn-header:hover {
  background: #006c9b;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.hero-section:hover .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(30, 64, 175, 0.3) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #e5e7eb;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
  background: #009fe3;
  color: white;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-cta:hover {
  background: #006c9b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.ml-2 {
  margin-left: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 300;
}

/* Highlights Section */
.highlights-section {
  padding: 8rem 0;
  background: #fafafa;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.highlight-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #009fe3;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009fe3;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  background: #009fe3;
  color: white;
  transform: scale(1.05);
}

.highlight-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
  padding: 8rem 0;
  background: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.vehicle-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.vehicle-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.1);
}

.vehicle-content {
  padding: 1.5rem;
}

.vehicle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.vehicle-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #009fe3;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.vehicle-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vehicle-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vehicle-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item svg {
  color: #009fe3;
  flex-shrink: 0;
}

/* Driver Section */
.driver-section {
  padding: 8rem 0;
  background: #000000;
  color: white;
}

.driver-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.driver-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
}

.driver-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.driver-image-wrapper:hover .driver-image {
  transform: scale(1.05);
}

.driver-info {
  padding: 2rem 0;
}

.driver-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.driver-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.driver-qualities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quality-item {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quality-item svg {
  color: #009fe3;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: #fafafa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  padding: 2rem 0;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #009fe3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: #006c9b;
  transform: scale(1.05);
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: #009fe3;
}

/* CTA Box */
.cta-box {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 3.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.cta-box:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-button {
  background: #0089c4;
  color: white;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  background: #006c9b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
  .driver-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .driver-image-wrapper {
    height: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-link {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* Bloc logo + titre */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Image logo */
.company-logo-img {
    height: 96px;        /* desktop */
    width: auto;
    object-fit: contain;
}

/* Titre */
.company-logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .brand {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .company-logo-img {
        height: 36px;
    }

    .company-logo {
        font-size: 1.4rem;
    }
}