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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #f2f2f2;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1549921296-3ecf7e4501a5?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn-primary {
  padding: 12px 30px;
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b89428;
}

/* Form Section */
.form-section {
  background-color: #1e1e1e;
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  margin: auto;
  background-color: #2b2b2b;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d4af37;
  text-align: center;
}

.form-container p {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
  color: #ccc;
}

form input, form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 6px;
  background-color: #444;
  color: #fff;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #d4af37;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #b89428;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
}
.loader {
  border: 6px solid #ccc;
  border-top: 6px solid #d4af37;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.fleet-card {
  background-color: #2b2b2b;
  padding: 20px;
  border-radius: 10px;
  color: #f2f2f2;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-5px);
}

.fleet-card h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.fleet-card p {
  font-weight: 300;
  color: #ccc;
}
.site-header {
  background-color: #111;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.site-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo a {
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header .site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-header .site-nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header .site-nav a:hover {
  color: #d4af37;
}
