/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: #0f16ed;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: rgb(68, 13, 233);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

nav a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('images/vellfire-side.jpg');
background-size: cover;
background-position: center;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero-text {
  max-width: 800px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

button {
  background-color: var(--secondary-color);
  color: rgb(15, 26, 232);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fleet Section */
.fleet {
  padding: 4rem 2rem;
  text-align: center;
}

.fleet h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.fleet h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 25%;
}

.car {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  transition: transform 0.3s ease;
}

.car:hover {
  transform: translateY(-5px);
}

.car img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.car h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Booking Section */
.booking {
  background-color: var(--light-color);
  padding: 4rem 2rem;
  text-align: center;
}

.booking h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

form textarea {
  grid-column: span 2;
  min-height: 120px;
}

form button {
  grid-column: span 2;
  justify-self: center;
  margin-top: 1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Partners Section */
.partners {
  margin-top: 3rem;
}

.partners h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.partner-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.partner-logo img:hover {
  filter: grayscale(0%);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  form {
    grid-template-columns: 1fr;
  }
  
  form textarea, form button {
    grid-column: span 1;
  }
}
/* Modern Color Scheme */
:root {
  --primary: #1a2a3a;       /* Dark blue */
  --secondary: #e67e22;     /* Orange accent */
  --light: #f9f9f9;         /* Off-white */
  --dark: #222;             /* Dark text */
  --gray: #777;             /* Secondary text */
  --light-gray: #e0e0e0;    /* Borders */
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--secondary);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Fleet Section */
.fleet {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary);
  position: relative;
}

.fleet h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.fleet-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.car {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.car:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.car img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--light-gray);
}

.car-details {
  padding: 1.8rem;
}

.car h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.car-features {
  color: var(--gray);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.car-features span {
  background: #f3f3f3;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  padding: 5rem 5%;
  color: white;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  position: relative;
}

.booking h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.booking-form {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.full-width {
  grid-column: span 2;
}

.submit-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 2rem auto 0;
  width: 200px;
}

.submit-btn:hover {
  background: #d35400;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav {
    margin-top: 1rem;
    gap: 1rem;
  flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .fleet-container {
    grid-template-columns: 1fr;
  }
}
/* Vehicle Gallery */
.vehicle-gallery {
  max-width: 800px;
  margin: 2rem auto;
}

.featured-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.featured-image:hover img {
  transform: scale(1.01);
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.thumbnail:hover {
  opacity: 1;
  border-color: #e67e22;
}

.thumbnail.active {
  opacity: 1;
  border-color: #e67e22;
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}
/* Fleet Section Styles */
.fleet-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title span {
  color: #e67e22;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.vehicle-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e67e22;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vehicle-details {
  padding: 25px;
}

.vehicle-details h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  margin-bottom: 25px;
}

.features-list li {
  margin-bottom: 10px;
  color: #555;
  display: flex;
  align-items: center;
}

.features-list i {
  margin-right: 10px;
  color: #e67e22;
  width: 20px;
  text-align: center;
}

.cta-button {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-button:hover {
  background: #128C7E;
}

.cta-button i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}
/* Blue WhatsApp Button */
.blue-button {
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.blue-button:hover {
  background-color: #0056b3;
}

/* Call Enquiry Button */
.call-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.call-button:hover {
  background-color: #1e7e34;
}

/* Submit Booking Button Styling */
.blue-submit {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.blue-submit:hover {
  background-color: #0056b3;
}
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(180deg, #1e2d3b, #1b2a3a);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    form {
      background-color: #1e2d3b;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      max-width: 700px;
      width: 100%;
    }

    form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #fff;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border-radius: 6px;
      border: none;
      outline: none;
      font-size: 16px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    input[type="date"] {
      color: #555;
    }

    .form-row {
      display: flex;
      gap: 15px;
    }

    .form-row input {
      flex: 1;
    }

    textarea {
      resize: vertical;
      height: 100px;
    }

    button {
      background-color: #007bff;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      margin-top: 15px;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #0056b3;
    }
.booking-page {
  background: linear-gradient(180deg, #1d3141, #1b2a3a);
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-page form {
  background-color: #1d3141;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  max-width: 700px;
  width: 100%;
  color: white;
}

.booking-page form h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.booking-page form h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background-color: #ff9900;
  margin: 10px auto 0;
  border-radius: 2px;
}

.booking-page input,
.booking-page textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  outline: none;
}

.booking-page .form-row {
  display: flex;
  gap: 15px;
}

.booking-page .form-row input {
  flex: 1;
}

.booking-page textarea {
  resize: vertical;
  height: 100px;
}

.booking-page button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.booking-page button:hover {
  background-color: #0056b3;
}
/* Scope styles only to the booking page */
.booking-page {
  background: linear-gradient(180deg, #1d3141, #1b2a3a); /* Matches screenshot gradient */
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-page .form-container {
  width: 100%;
  max-width: 800px;
  background: transparent;
  color: #fff;
}

.booking-page h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #263445;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.booking-page h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff9900;
  margin: 8px auto 0;
  border-radius: 2px;
}

.booking-page form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-page .form-row {
  display: flex;
  gap: 15px;
}

.booking-page input,
.booking-page textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  width: 100%;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.booking-page textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-page button {
  background-color: #007bff;
  color: #263445;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-page button:hover {
  background-color: #263445;
}
form {
  background: #263445; /* White background for the form */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
  /* Add color only to the bottom */
  background: linear-gradient(to bottom, 
                            #263445(58, 52, 116) 0%, 
                            #263445(86, 92, 215) 90%, 
                            #263445 90%, 
                            #263445 100%);
}

/* Optional: Adjust the gradient position if needed */
input[type="submit"] {
  margin-bottom: 0; /* Remove any extra margin at bottom */
}
