@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #1e1e2f;
  color: #f0f0f5;
  font-family: 'Poppins', Arial, sans-serif;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
header {
  background-color: #2c2c44;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 80px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: #f9c74f;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #f0f0f5;
}

/* ========== SEARCH BAR ========== */
.search-bar {
  background: #2c2c44;
  padding: 20px 0;
  margin-top: 10px;
}

.search-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.search-bar input,
.search-bar select {
  padding: 12px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: #1e1e2f;
  color: #f0f0f5;
  min-width: 150px;
}

.search-bar input:focus,
.search-bar select:focus {
  outline: 2px solid #f9c74f;
  outline-offset: 2px;
}

.search-bar button {
  padding: 12px 25px;
  background: #f9c74f;
  border: none;
  color: #1e1e2f;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.search-bar button:hover {
  background: #c5a634;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 199, 79, 0.3);
}

/* ========== FEATURED CARS SECTION ========== */
.featured-cars {
  margin: 40px 0;
  
}

.featured-cars h2 {
  margin-bottom: 30px;
  color: #f0f0f5;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.car-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch; /* Make all cards same height */
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Modern Card & Button Effects --- */
.car-card {
  background: #2c2c44;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(249, 199, 79, 0.2);
  border-color: #f9c74f;
}
.car-card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.car-card h3 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 8px;
}
.car-price {
  color: #f9c74f;
  font-weight: bold;
  margin: 15px 0;
  font-size: 1.1rem;
}
.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}
.car-card button {
  background: #f9c74f;
  color: #23233a;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.18s, transform 0.18s;
}
.car-card button:hover {
  box-shadow: 0 4px 16px #f9c74f55, 0 2px 8px rgba(0,0,0,0.12);
  transform: scale(1.06);
  cursor: pointer;
}

/* --- Enhanced Navbar Button Hover Effect --- */
.menu a {
  position: relative;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  border-radius: 6px;
  padding: 6px 16px;
}
.menu a:hover, .menu a.active {
  color: #23233a;
  background: linear-gradient(90deg, #f9c74f 60%, #f9844a 100%);
  box-shadow: 0 2px 8px #f9c74f33;
}
.menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f9c74f 60%, #f9844a 100%);
  border-radius: 2px;
  transition: width 0.25s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.menu a:hover::after, .menu a.active::after {
  width: 100%;
}

.car-badge.new {
  background: #28a745;
}

.car-badge.used {
  background: #ffc107;
  color: #1e1e2f;
}

.car-badge.rent {
  background: #007bff;
}

.car-specs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.car-specs span {
  background: #1e1e2f;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ccc;
}

.car-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 15px 0;
  min-height: 80px;
  flex-grow: 1;
}

.car-features span {
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 500;
}

.car-card img {
  width: 100%;
  max-height: 180px;  
  object-fit: contain; 
}

.car-card h3 {
  margin: 15px 0 10px;
  color: #f0f0f5;
}

.car-card p {
  color: #f9c74f;
  font-weight: bold;
  margin-bottom: 10px;
}

.car-card button {
  padding: 10px 15px;
  border: none;
  background: #f9c74f;
  color: #1e1e2f;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 20px;
}

.car-card button:hover {
  background: #c5a634;
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: #222240;
  color: #f0f0f5;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

/* ========== SINGLE CAR PAGE ========== */
.back-button {
  display: inline-flex;
  align-items: center;
  margin: 20px;
  text-decoration: none;
  color: #f9c74f;
  font-size: 16px;
  font-weight: bold;
}

.back-button span {
  font-size: 20px;
  margin-right: 8px;
}

.car-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

.car-detail img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(249, 199, 79, 0.4);
}

.car-info {
  max-width: 500px;
}

.car-info h2 {
  color: #f0f0f5;
  margin-top: 0;
}

.car-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #ddd;
}

.car-info button {
  background-color: #f9c74f;
  color: #1e1e2f;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.car-info button:hover {
  background-color: #c5a634;
  color: #fff;
}
.hero {
  background: linear-gradient(rgba(30, 30, 47, 0.7), rgba(44, 44, 68, 0.7)), url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #f0f0f5;
  position: relative;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.hero-text {
  flex: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-text h4 {
  color: #f9c74f;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #f0f0f5;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-text button {
  background-color: #f9c74f;
  color: #1e1e2f;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.hero-text button:hover {
  background-color: #c5a634;
  color: #fff;
}

.hero-image {
  flex: 1.5;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 1000px; 
  filter: drop-shadow(0 0 10px rgba(249, 199, 79, 0.3));
}
html {
  scroll-behavior: smooth;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #f9c74f;
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 10;
  background: rgba(30, 30, 47, 0.8);
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid #f9c74f;
  box-shadow: 0 4px 15px rgba(249, 199, 79, 0.3);
  transition: all 0.3s ease;
}

.scroll-down:hover {
  background: rgba(249, 199, 79, 0.2);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(249, 199, 79, 0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); 
  }
  40% {
    transform: translateY(8px); 
  }
  60% {
    transform: translateY(4px); 
  }
}

/* ========== ADMIN LINK STYLING ========== */
.admin-link {
  background: #f9c74f;
  color: #1e1e2f !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #f9c74f;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-top: -2px;
}

.admin-link:hover {
  background: #c5a634;
  color: #fff !important;
  border-color: #c5a634;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(249, 199, 79, 0.3);
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 80px 0;
  background: #1e1e2f;
}

.services h2 {
  text-align: center;
  color: #f0f0f5;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #2c2c44;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(249, 199, 79, 0.2);
  border-color: #f9c74f;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #f9c74f;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 0;
  background: #2c2c44;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  color: #f0f0f5;
  margin-bottom: 25px;
  font-size: 2.5rem;
  margin-top: 0;
}

.about-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: #1e1e2f;
  border-radius: 8px;
}

.stat h3 {
  color: #f9c74f;
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat p {
  color: #ccc;
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 80px 0;
  background: #1e1e2f;
}

.contact h2 {
  text-align: center;
  color: #f0f0f5;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  color: #f9c74f;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: #2c2c44;
  border-radius: 8px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h4 {
  color: #f9c74f;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-item p {
  color: #ccc;
  line-height: 1.5;
}

.contact-form h3 {
  color: #f9c74f;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #444;
  border-radius: 6px;
  background: #2c2c44;
  color: #f0f0f5;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f9c74f;
}

.contact-form button {
  background: #f9c74f;
  color: #1e1e2f;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #c5a634;
}

/* ========== CAR DETAIL PAGES ========== */
.car-detail-container {
  padding: 40px 0;
  background: #1e1e2f;
  min-height: 100vh;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #f9c74f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #c5a634;
}

.car-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.car-images {
  position: relative;
}

.main-image {
  position: relative;
  margin-bottom: 20px;
}

.main-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-image .car-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.car-info {
  padding: 20px;
  background: #2c2c44;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #444;
}

.car-header h1 {
  color: #f0f0f5;
  font-size: 2.5rem;
  margin: 0;
}

.car-price {
  color: #f9c74f;
  font-size: 2rem;
  font-weight: bold;
}

.car-specifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #1e1e2f;
  border-radius: 8px;
}

.spec-icon {
  font-size: 1.5rem;
}

.spec-item h4 {
  color: #f9c74f;
  margin: 0 0 5px 0;
  font-size: 0.9rem;
}

.spec-item p {
  color: #f0f0f5;
  margin: 0;
  font-weight: 600;
}

.car-description {
  margin-bottom: 30px;
}

.car-description h3 {
  color: #f9c74f;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.car-description p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.car-features {
  margin-bottom: 30px;
}

.car-features h3 {
  color: #f9c74f;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #1e1e2f;
  border-radius: 6px;
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-item span:last-child {
  color: #f0f0f5;
  font-size: 0.9rem;
}

.rental-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.rent-btn,
.contact-btn {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.rent-btn {
  background: #f9c74f;
  color: #1e1e2f;
}

.rent-btn:hover {
  background: #c5a634;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 199, 79, 0.3);
}

.contact-btn {
  background: transparent;
  color: #f9c74f;
  border: 2px solid #f9c74f;
}

.contact-btn:hover {
  background: #f9c74f;
  color: #1e1e2f;
  transform: translateY(-2px);
}

/* ========== CONTACT MODAL ========== */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.contact-modal {
  background: #2c2c44;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #f9c74f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #f9c74f;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #c5a634;
}

.contact-modal h2 {
  color: #f9c74f;
  margin-bottom: 10px;
  text-align: center;
}

.contact-modal p {
  color: #ccc;
  text-align: center;
  margin-bottom: 25px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-option {
  background: #1e1e2f;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #444;
  transition: border-color 0.3s ease;
}

.contact-option:hover {
  border-color: #f9c74f;
}

.contact-option .contact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.contact-option h3 {
  color: #f9c74f;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-option p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.contact-option button {
  background: #f9c74f;
  color: #1e1e2f;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-option button:hover {
  background: #c5a634;
}

.contact-form-section {
  border-top: 2px solid #444;
  padding-top: 20px;
}

.contact-form-section h3 {
  color: #f9c74f;
  margin-bottom: 15px;
  text-align: center;
}

#quickContactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#quickContactForm input,
#quickContactForm textarea {
  padding: 12px;
  border: 2px solid #444;
  border-radius: 6px;
  background: #1e1e2f;
  color: #f0f0f5;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

#quickContactForm input:focus,
#quickContactForm textarea:focus {
  outline: none;
  border-color: #f9c74f;
}

#quickContactForm button {
  background: #f9c74f;
  color: #1e1e2f;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#quickContactForm button:hover {
  background: #c5a634;
}

/* ========== CONTACT POPUP ========== */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.contact-popup {
  background: #2c2c44;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #f9c74f;
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #444;
}

.popup-header h3 {
  color: #f9c74f;
  margin: 0;
  font-size: 1.3rem;
}

.close-popup {
  color: #f9c74f;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-popup:hover {
  color: #c5a634;
}

.popup-content {
  padding: 25px;
}

.car-info {
  color: #ccc;
  margin-bottom: 20px;
  text-align: center;
  padding: 10px;
  background: #1e1e2f;
  border-radius: 6px;
}

.car-info strong {
  color: #f9c74f;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#contactForm label {
  color: #f0f0f5;
  font-weight: 600;
  font-size: 0.9rem;
}

#contactForm input,
#contactForm textarea {
  padding: 10px;
  border: 2px solid #444;
  border-radius: 6px;
  background: #1e1e2f;
  color: #f0f0f5;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #f9c74f;
}

.form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn,
.cancel-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn {
  background: #f9c74f;
  color: #1e1e2f;
}

.submit-btn:hover {
  background: #c5a634;
  transform: translateY(-1px);
}

.cancel-btn {
  background: #444;
  color: #f0f0f5;
}

.cancel-btn:hover {
  background: #666;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .car-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .car-specifications {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .rental-actions {
    flex-direction: column;
  }
  
  .car-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .car-header h1 {
    font-size: 2rem;
  }
  
  .car-price {
    font-size: 1.5rem;
  }
}