/* ===============================
   STYLES SPECIFIQUES AUX PAGES
   =============================== */

/* --- Sereno Auto --- */
.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.price-callout {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-callout .price-tag {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 10px;
  text-align: center;
}

.price-callout .price-tag .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}

.price-callout .price-tag .label {
  font-size: 0.8rem;
  color: var(--gray-light);
  opacity: 0.8;
}

.mini-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* --- Vente Véhicules --- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.vehicle-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card .vehicle-img {
  height: 200px;
  overflow: hidden;
}

.vehicle-card .vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-img img {
  transform: scale(1.05);
}

.vehicle-card .vehicle-body {
  padding: 20px;
}

.vehicle-card .vehicle-body h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.vehicle-card .vehicle-body .vehicle-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.vehicle-card .vehicle-body .vehicle-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.vehicle-card .vehicle-body .vehicle-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Location Split Hero --- */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-hero-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.split-hero-item:hover {
  flex: 1.1;
}

.split-hero-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-hero-item:hover img {
  transform: scale(1.05);
}

.split-hero-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,68,0.7);
  z-index: 1;
}

.split-hero-item .content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.split-hero-item .content i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.split-hero-item .content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 8px;
}

.split-hero-item .content p {
  color: var(--gray-light);
  margin-bottom: 20px;
}

/* --- Logistique Infographic --- */
.timeline-vertical {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.timeline-step {
  position: relative;
  padding-bottom: 40px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy-dark);
}

.timeline-step .step-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-step h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* --- Billetterie Destinations Grid --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-sm);
}

.destination-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-card .flag {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

.destination-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* --- A Propos Timeline --- */
.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.about-milestone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}

.about-milestone:nth-child(odd) .milestone-content {
  text-align: right;
  padding-right: 30px;
}

.about-milestone:nth-child(even) .milestone-content {
  grid-column: 2;
  padding-left: 30px;
}

.about-milestone .milestone-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
}

.about-milestone .milestone-content h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-milestone .milestone-content p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.milestone-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-info-card .ci-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-info-card .ci-text p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* --- Values Grid (A Propos) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
