body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F8F9FA;
  color: #2C3E50;
  margin: 0;
  padding: 0;
}
.header {
  position: relative;
  background: url('pics/laayoune.jpg') center center / cover no-repeat;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem 4rem 1rem;
  margin-top: -80px;
  padding-top: calc(80px + 4rem);
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.header-content h1 {
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  /* Animation properties */
  animation: titleSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(-30px);
}

/* Animation keyframes for the title */
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation keyframes for car cards */
@keyframes cardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  max-width: 600px;
  /* Animation properties */
  animation: titleSlideIn 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(-30px);
}
.btn-reserver {
  display: inline-block;
  background: #e6b800;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(244, 200, 66, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-reserver:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 200, 66, 0.4);
  transform: scale(1.05); 
}
.fleet-section {
  padding: 3rem 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
/* --- Card Animation Styles --- */
.car-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-out;
  cursor: pointer;
  /* Animation properties */
  animation: cardSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}
.card-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F4C842;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  z-index: 1;
  pointer-events: none;
}
.car-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.car-card .car-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2C3E50;
  text-align: center;
  transition: color 0.3s ease-out;
}
.car-card .car-specs {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.7rem;
  justify-content: center;
}
.car-card .car-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1rem;
  color: #2C3E50;
  transition: color 0.3s ease-out;
}
.car-card .car-spec svg {
  color: #F4C842;
  transition: color 0.3s ease-out;
}
.car-card .price-badge {
  background: #F4C842;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  /* Remove absolute positioning */
  position: static;
  top: unset;
  right: unset;
  left: unset;
  margin: 16px auto 0 auto;
  display: block;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: background 0.3s ease-out;
  z-index: 2;
  text-align: center;
}
.car-card .car-image {
  width: 100%;
  max-width: 220px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 10px;
  transition: box-shadow 0.3s ease-out, border 0.3s ease-out;
  border: none;
  z-index: 2;
  position: relative;
}
.car-card:hover .card-overlay {
  width: 200%;
  height: 200%;
  border-radius: 0;
}
.car-card:hover .car-title {
  color: #2C3E50;
}
.car-card:hover .car-spec {
  color: #2C3E50;
}
.car-card:hover .car-spec svg {
  color: #2C3E50;
}
.car-card:hover .price-badge {
  background: #2C3E50;
  color: #fff;
}
.car-card:hover .car-image {
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,62,80,0.12);
  transition: background 0.2s;
}
.whatsapp-btn:hover {
  background: #128C7E;
}
.reservation-section {
  background: none;
  position: relative;
  padding: 4rem 0;
  margin-top: 2rem;
}
.reservation-form {
  background: url('pics/Moroccan-Desert.jpg') center center / cover no-repeat;
  position: relative;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 3;
  overflow: hidden;
  border: 1.5px solid var(--sahara-sand);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Scroll animation properties */
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.reservation-form.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.reservation-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.45);
  z-index: 1;
}
.reservation-form > * {
  position: relative;
  z-index: 2;
}
.reservation-form h2 {
  margin-top: 0;
  color: var(--sahara-brown);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.reservation-form label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #2C3E50;
  font-weight: 600;
  gap: 0.3rem;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  margin-top: 0.3rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid #fff8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.7);
  color: #2C3E50;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(244,200,66,0.06);
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border: 1.5px solid var(--sahara-sand);
  outline: none;
  box-shadow: 0 0 0 2px #F4C84233;
}
.cta-btn {
  background: white;
  color: #2C3E50;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(230,126,34,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
}
.cta-btn:hover {
  background: #e6b800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,126,34,0.18);
  transform:  scale(1.03);
}
.arrow {
  font-size: 1.2rem;
  margin-left: 0.3rem;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #2C3E50;
  font-size: 1rem;
  background: none;
}
@media (max-width: 900px) {
  .reservation-overlay {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1rem;
  }
  .price-bubble {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
  .reservation-form {
    margin-left: 0;
    min-width: unset;
    max-width: unset;
    padding: 1.5rem 1rem 1rem 1rem;
  }
}
@media (max-width: 600px) {
  .header-content h1 {
    font-size: 1.3rem;
  }
  .fleet-section {
    padding: 2rem 0.2rem 1rem 0.2rem;
  }
  .reservation-section {
    padding: 2rem 0;
  }
  .reservation-form {
    padding: 1.2rem 0.7rem;
  }
  .price-bubble {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
  }
} 

.navbar {
  background: #2C3E50;
  color: #fff;
  padding: 0.7rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  box-sizing: border-box;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4C842;
  text-decoration: none;
  letter-spacing: 1px;
}
.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar-links li a,
.dropbtn {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.navbar-links li a:hover,
.dropbtn:hover {
  background: #F4C842;
  color: #2C3E50;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(44,62,80,0.15);
  border-radius: 16px;
  z-index: 100;
  padding: 0.5rem 0;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
}
.dropdown-content a {
  color: #111 !important;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover {
  background: #F4C842;
  color: #2C3E50 !important;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  width: 90%;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.close {
  color: #6c757d;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  background: #f8f9fa;
}
.close:hover {
  background: #e9ecef;
  color: #495057;
}

.conditions-section, .about-section {
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  padding: 2.5rem 2rem;
  /* Scroll animation properties */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.conditions-section.animate-in, .about-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.conditions-section h2, .about-section h2 {
  color: #2C3E50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.conditions-section ul, .about-section ul {
  margin: 1.2rem 0 0 1.2rem;
  padding: 0;
  color: #2C3E50;
  font-size: 1.1rem;
}
.conditions-section li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.about-section .map {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
@media (max-width: 700px) {
  .navbar-container {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0 0.5rem;
  }
  .navbar-links {
    gap: 1rem;
  }
  .conditions-section, .about-section {
    padding: 1.2rem 0.5rem;
  }
  .modal-content {
    padding: 2rem 1.5rem;
    margin: 10% auto;
    width: 95%;
    max-width: 400px;
  }
  .contact-form h2 {
    font-size: 1.3rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 1rem;
  }
} 

/* Hamburger menu icon */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
  padding: 0;
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Sidebar overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}

/* Mobile sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -70vw;
  width: 70vw;
  max-width: 340px;
  height: 100vh;
  background: #2C3E50;
  box-shadow: -2px 0 16px rgba(44,62,80,0.18);
  z-index: 1001;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}
.mobile-sidebar.open {
  right: 0;
}
.mobile-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-sidebar li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-sidebar li:last-child {
  border-bottom: none;
}
.mobile-sidebar a, .mobile-sidebar .dropbtn {
  display: block;
  width: 100%;
  color: #fff;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1.1rem 2rem;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.mobile-sidebar a:hover, .mobile-sidebar .dropbtn:hover {
  background: #F4C842;
  color: #2C3E50;
}
.mobile-sidebar .dropdown-content {
  position: static;
  background: #22303a;
  min-width: 100%;
  box-shadow: none;
  border-radius: 0;
  display: none;
}
.mobile-sidebar .dropdown.open .dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
  .navbar-container {
    padding: 0 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F4C842;
    text-decoration: none;
    letter-spacing: 1px;
    margin: 0;
  }
  .hamburger {
    margin-left: auto;
  }
  .mobile-sidebar .dropdown-content {
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    border-radius: 12px;
    padding: 0.2rem 0;
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
    max-width: 220px;
    min-width: 140px;
    margin: 0.2rem auto;
    left: 0;
    right: 0;
    position: relative;
  }
  .mobile-sidebar .dropdown.open .dropdown-content {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  .mobile-sidebar .dropdown-content a {
    color: #2C3E50 !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-sidebar .dropdown-content a:hover {
    background: #F4C842;
    color: #2C3E50 !important;
  }
}
@media (min-width: 769px) {
  .mobile-sidebar, .sidebar-overlay {
    display: none !important;
  }
  .hamburger {
    display: none !important;
  }
  .navbar-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    width: auto;
    box-shadow: none;
    border-radius: 0;
    gap: 2rem;
    align-items: center;
    padding: 0;
  }
} 

.price-bubble {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  background: var(--sahara-sand);
  color: #2C3E50;
  font-weight: 900;
  border-radius: 40px;
  padding: 1.4rem 2.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 2rem;
  box-shadow: 0 6px 32px rgba(230,126,34,0.18);
  letter-spacing: 1px;
  text-align: center;
  border: 2.5px solid #fff2;
  transition: box-shadow 0.2s;
  z-index: 4;
  /* Scroll animation properties */
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.8s ease-out;
}

.price-bubble.animate-in {
  opacity: 1;
  transform: scale(1);
} 

@media (min-width: 900px) {
  .price-bubble {
    max-width: 420px;
    width: 100%;
    font-size: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
} 

.why-choose-us {
  margin: 4rem auto 0 auto;

  padding: 2.5rem 1rem 3rem 1rem;
  background: #fff;
  position: relative;
  z-index: 2;
}

.why-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: #faf9f6;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(244,200,66,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  /* Scroll animation properties */
  opacity: 0;
  transform: scale(0.8) rotateY(-15deg);
  transition: all 0.8s ease-out;
}

.why-item.animate-in {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

.why-item:hover {
  box-shadow: 0 8px 32px rgba(244,200,66,0.18);
  transform: translateY(-4px) scale(1.03);
}

.why-icon {
  background: #F4C842;
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(230,126,34,0.10);
}

.why-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 0.7rem;
}

.why-item p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.why-note {
  color: #E67E22;
  font-size: 0.98em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
}

@media (max-width: 600px) {
  .why-choose-us {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  
  .why-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .why-item {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-radius: 12px;
  }
  
  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  
  .why-item h3 {
    font-size: 1.05rem;
  }
} 

.car-card {
  position: relative;
}
.card-reserve-btn {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) scale(0.7);
  background: rgba(255,255,255,0.0);
  color: #2C3E50;
  font-weight: 800;
  font-size: 0.98rem;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 4px 16px rgba(230,126,34,0.10);
  cursor: pointer;
  z-index: 20;
  transition: background 0.18s, box-shadow 0.18s, transform 0.22s cubic-bezier(.4,0,.2,1), opacity 0.18s;
  opacity: 0;
  letter-spacing: 0.5px;
  outline: none;
  pointer-events: none;
}
.card-reserve-btn.show-reserve-btn {
  background: #F4C842;
  color: #2C3E50;
  transform: translateX(-50%) scale(1);
  opacity: 0.97;
  pointer-events: auto;
}
.card-reserve-btn:hover, .card-reserve-btn:focus {
  background: #e6b800;
  color: #fff;
  box-shadow: 0 8px 32px rgba(230,126,34,0.22);
  transform: translateX(-50%) scale(1.08);
}
@media (max-width: 600px) {
  .card-reserve-btn {
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    bottom: 10px;
  }
} 

@media (min-width: 900px) {
  .reservation-form {
    max-width: 700px;
    padding: 2.5rem 3rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.2rem 1.5rem;
    align-items: end;
  }
  .reservation-form h2 {
    grid-column: 1 / span 2;
    margin-bottom: 1.5rem;
  }
  .reservation-form label:nth-of-type(1) { /* Nom complet */
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .reservation-form label:nth-of-type(2) { /* Numéro de téléphone */
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .reservation-form label:nth-of-type(3) { /* Véhicule */
    grid-column: 1 / 2;
    grid-row: 3;
  }
  .reservation-form label:nth-of-type(4) { /* Date du retrait */
    grid-column: 2 / 3;
    grid-row: 3;
  }
  .reservation-form label:nth-of-type(5) { /* Date de retour */
    grid-column: 1 / 2;
    grid-row: 4;
  }
  .reservation-form .cta-btn {
    grid-column: 2 / 3;
    grid-row: 4;
    margin-top: 0;
    align-self: stretch;
    height: 100%;
  }
} 

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.8rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
} 

/* Footer Styles */
.footer {
  background: #2C3E50;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #E67E22;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #E67E22;
  border-radius: 1px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: auto;
}

.footer-brand h3 {
  color: #E67E22;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #E67E22;
}

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #E67E22;
  transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
  
  .footer-brand h3 {
    font-size: 1.3rem;
  }
  
  .modal-content {
    padding: 1.5rem 1rem;
    margin: 15% auto;
    width: 98%;
    max-width: 350px;
  }
  
  .contact-form h2 {
    font-size: 1.2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .contact-form .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
} 
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.contact-form h2 {
  margin: 0 0 1rem 0;
  text-align: center;
  color: #2C3E50;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #495057;
  font-weight: 500;
  gap: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  margin-top: 0;
  padding: 0.875rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #2C3E50;
  transition: all 0.2s ease;
  box-shadow: none;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #F4C842;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 200, 66, 0.1);
  background: #fff;
}
.contact-form .cta-btn {
  background: #F4C842;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(244, 200, 66, 0.2);
}
.contact-form .cta-btn:hover {
  background: #e6b800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(244, 200, 66, 0.3);
  transform: translateY(-1px);
}
