/* Reset box sizing and default styles */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

/* ======================
   Header Styles
   ====================== */
.site-header {
  width: 100%;
  background: #111;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.brand img {
  width: 42px;
  height: 42px;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #d4af37;
}

/* ======================
   Hero Section
   ====================== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 60px;
}

.hero-logo img {
  width: 120px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin: 10px 0;
}

.hero p {
  color: #bbb;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ======================
   Button Styles
   ====================== */
.btn {
  display: inline-block;
  min-width: 230px;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.25s, color 0.25s;
  border: none;
}

/* Gold button variant */
.btn.gold {
  background: #d4af37;
  color: #111;
}
.btn.gold:hover {
  background: #b8962e;
  color: #111;
}
.btn.gold:active {
  background: #ffffff;
  color: #111;
}

/* Outline button variant */
.btn.outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}
.btn.outline:hover {
  background: #d4af37;
  color: #111;
}
.btn.outline:active {
  background: #ffffff;
  color: #111;
}

/* Trust row text */
.trust-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #ccc;
}

/* ======================
   Generic Section Styles
   ====================== */
.section,
.featured,
.reviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section p {
  max-width: 720px;
  margin: 0 auto;
  color: #d0d0d0;
  line-height: 1.7;
}

/* ======================
   Featured Section
   ====================== */
.featured-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  background: linear-gradient(135deg, #111, #070707);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.featured-text {
  max-width: 500px;
}

.luxury-badge {
  display: inline-block;
  background: #d4af37;
  color: #111;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
}

.featured-image {
  max-width: 450px;
  width: 100%;
  /* Remove the white background and padding to avoid grey box around the image */
  background: transparent;
  padding: 0;
  border-radius: 15px;
}

/* Social buttons container */
.featured-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Social button base styling */
.social-btn {
  width: 150px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #111;
  background: #d4af37;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* WhatsApp color override */
.whatsapp-btn {
  background: #25D366;
  color: #111;
}

/* Instagram gradient */
.instagram-btn {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

/* Facebook blue */
.facebook-btn {
  background: #1877f2;
  color: #fff;
}

/* Social hover states */
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
.instagram-btn:hover {
  box-shadow: 0 0 20px rgba(221, 42, 123, 0.6);
}
.facebook-btn:hover {
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
}

/* ======================
   Reviews Section
   ====================== */
.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review {
  background: #111;
  padding: 20px;
  border-radius: 15px;
}

.stars {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 10px;
}

.reviewer {
  color: #888;
  font-size: 14px;
}

/* ======================
   Footer
   ====================== */
footer {
  background: #111;
  padding: 20px;
  color: #aaa;
}

/* ======================
   Responsive Styles
   ====================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 90%;
  }
  .featured-buttons {
    flex-direction: column;
  }
  .social-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ======================
   Form & Booking Styles
   ====================== */

/* Container wrapper for consistent page widths */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Form container */
.form-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  background: linear-gradient(135deg, #111, #070707);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: left;
}

.form-shell h1 {
  margin-bottom: 10px;
}

.form-shell p {
  margin-bottom: 25px;
  color: #d0d0d0;
}

/* Labels */
.form-shell label {
  display: block;
  margin: 15px 0 6px;
  font-weight: bold;
  color: #fff;
}

/* Inputs, selects and textarea */
.form-shell input[type="text"],
.form-shell input[type="number"],
.form-shell input[type="date"],
.form-shell input[type="time"],
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #0b0b0b;
  color: #fff;
  font-size: 15px;
  resize: none;
}

.form-shell input::placeholder,
.form-shell textarea::placeholder {
  color: #888;
}

/* Grid layout for two-column fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid > div {
  display: flex;
  flex-direction: column;
}

/* Vehicle options wrapper */
.vehicle-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Individual vehicle card */
.vehicle-option {
  width: calc(33.333% - 20px);
  background: #111;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.vehicle-option img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.vehicle-option strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.vehicle-option small {
  color: #bbb;
  font-size: 13px;
}

.vehicle-option:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.vehicle-option.selected {
  border-color: #d4af37;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

/* Price box display */
.pricebox {
  display: none;
  margin-top: 20px;
  padding: 15px 20px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  font-size: 18px;
}

.pricebox strong {
  color: #d4af37;
}

/* Note text */
.note {
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  /* Make form grids single column on small screens */
  .form-grid {
    grid-template-columns: 1fr;
  }
  /* Vehicle cards stack */
  .vehicle-option {
    width: 100%;
  }
  .form-shell {
    padding: 30px 20px;
  }
}

/* ======================
   Feature Highlights Section
   ====================== */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.feature-item {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  color: #fff;
}

.feature-item i {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 10px;
}

.feature-item h3 {
  margin-bottom: 10px;
  color: #fff;
}

.feature-item p {
  color: #bbb;
}

/* ======================
   Professional Footer
   ====================== */
.site-footer {
  background: #111;
  color: #bbb;
  padding: 40px 20px 20px;
}

.site-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.site-footer .footer-col {
  flex: 1;
  min-width: 200px;
}

.site-footer .footer-col h4 {
  color: #d4af37;
  margin-bottom: 10px;
}

.site-footer .footer-col p {
  margin: 4px 0;
  color: #bbb;
}

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

.site-footer .footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.site-footer .footer-col ul li a:hover {
  color: #d4af37;
}

.site-footer .footer-social a {
  color: #bbb;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.site-footer .footer-social a:hover {
  color: #d4af37;
}

.site-footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 10px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column;
  }
  .site-footer .footer-col {
    margin-bottom: 20px;
  }
}