/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
:root {
  --primary-color: #00b14f; /* Vibrant green from theme */
  --primary-hover: #008a3d;
  --dark-bg: #111111;
  --darker-bg: #0a0a0a;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #888888;
  --border-color: #eaeaea;
  
  --font-main: 'Inter', sans-serif;
  
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-green { color: var(--primary-color); }
.text-white { color: var(--text-light); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline-white {
  display: inline-block;
  background-color: transparent;
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--text-light);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-link:hover {
  color: var(--primary-hover);
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-link:hover { color: var(--primary-color); }

.header {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: auto;
  max-height: 50px;
  max-width: 250px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
  padding: 5px 0;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: var(--text-light);
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.stats-header h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  margin-bottom: 15px;
}
.stat-icon img {
  width: 50px;
  height: 50px;
}

.stat-box h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   CAR TYPES SECTION (DARK)
   ========================================================================== */
.car-types-section {
  background-color: var(--dark-bg);
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
}
.section-title .subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
}

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

.car-card {
  background-color: var(--darker-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

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

.car-image {
  height: 220px;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.05);
}

.car-content {
  padding: 25px;
  position: relative;
}

.car-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background-color: rgba(255,255,255,0.1);
  color: var(--text-light);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

.car-content h3 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.car-content .btn-link {
  color: var(--primary-color);
  font-size: 14px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.service-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.service-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 1;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--border-color);
  font-size: 24px;
  font-weight: 800;
}

.service-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-right: 30px;
}

.service-info .btn-link {
  margin-top: auto;
}

.service-card.full-width {
  grid-column: span 2;
}

/* ==========================================================================
   BOOKING FORM SECTION
   ========================================================================== */
.booking-section {
  padding: 0;
}

.booking-split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.booking-left, .booking-right {
  flex: 1;
  min-width: 50%;
  display: flex;
  flex-direction: column;
}

.booking-image-wrapper {
  position: relative;
  flex: 1;
  min-height: 500px;
}

.booking-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 177, 79, 0.9);
  color: #fff;
  padding: 60px 40px;
}

.booking-overlay h2 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.booking-form-container {
  padding: 80px 10%;
  background-color: var(--light-bg);
  height: 100%;
}

.booking-form-container h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

#hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 15px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 177, 79, 0.2);
}

.form-group input.err, .form-group select.err {
  border-color: #ff4d4f;
  background-color: #fff2f0;
}

.error-msg {
  display: none;
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 5px;
}
.error-msg.show {
  display: block;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partner-brand {
  padding-right: 40px;
  border-right: 1px solid var(--border-color);
}

.partner-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.partner-logos img {
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonial-layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 80px;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: -20px;
}

.testimonial-content h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.author-info strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
}
.author-info span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   APP DOWNLOAD SECTION
   ========================================================================== */
.app-download-section {
  padding: 80px 0 0;
  background-color: #ffffff;
  overflow: hidden;
}

.app-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-text {
  flex: 1;
  padding-bottom: 80px;
}

.app-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.app-links {
  display: flex;
  gap: 15px;
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 20px;
}

.app-image img {
  max-height: 450px;
  width: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: contain;
}

/* ==========================================================================
   ORIGINAL CONTENT SECTIONS
   ========================================================================== */
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-col.about p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col.links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col.links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col.links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-col.contact p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  background-color: var(--darker-bg);
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials {
  display: flex;
  gap: 15px;
}
.socials a {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}
.socials a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 991px) {
  .hero-content { grid-template-columns: 1fr !important; text-align: center; }
  .hero-content h1 { font-size: 36px; }
  .hero-usp-list { justify-content: center; text-align: left; margin: 0 auto 25px; max-width: 400px; }
  .hero-form-col { margin-top: 30px; }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.full-width { grid-column: span 1; }
  .booking-split { flex-direction: column; }
  .booking-image-wrapper { min-height: 300px; }
  .booking-form-container { padding: 50px 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .app-layout { flex-direction: column; text-align: center; }
  .app-links { justify-content: center; }
  .app-text { padding-bottom: 40px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { display: none; } /* Mobile menu toggle needed */
  .car-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
  .stats-header h2 { font-size: 24px; }
  .service-card { flex-direction: column; }
  .service-card img { width: 100%; height: 200px; }
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.bg-light-only { background-color: var(--light-bg); }
.thankyou-main { display: flex; justify-content: center; padding: 60px 20px; min-height: 80vh; align-items: center; }
.thankyou-card { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 600px; width: 100%; text-align: center; border-top: 5px solid var(--primary-color); }
.success-icon-wrapper { margin-bottom: 20px; display: inline-flex; background: #e8f5e9; padding: 15px; border-radius: 50%; }
.thankyou-title { font-size: 32px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.thankyou-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; }

.next-steps-container { text-align: left; background: var(--light-bg); padding: 20px; border-radius: 8px; margin-bottom: 30px; }
.next-steps-container h3 { font-size: 18px; margin-bottom: 15px; color: var(--text-dark); }
.next-steps-list { display: flex; flex-direction: column; gap: 15px; }
.next-steps-list li { display: flex; align-items: flex-start; gap: 15px; }
.step-num-circle { width: 30px; height: 30px; border-radius: 50%; background: var(--primary-color); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.next-steps-list p { font-size: 14px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.next-steps-list strong { color: var(--text-dark); }

.thankyou-urgent-callout { border: 1px dashed #ccc; padding: 20px; border-radius: 8px; margin-bottom: 30px; }
.thankyou-urgent-callout p { font-weight: 600; margin-bottom: 15px; }
.thankyou-ctas { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.thankyou-ctas .btn { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; padding: 12px 20px; }
.btn-whatsapp { background-color: #25D366; color: #fff; padding: 12px 24px; border-radius: 4px; font-weight: 600; text-align: center; display: inline-block; transition: var(--transition); border: none; text-decoration: none; }
.btn-whatsapp:hover { background-color: #128C7E; color: #fff; }

.back-link { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--text-muted); text-decoration: underline; }
.back-link:hover { color: var(--primary-color); }

.main-header { padding: 20px; background: #fff; text-align: center; border-bottom: 1px solid var(--border-color); }
.brand-logo-img { max-height: 60px; width: auto; margin: 0 auto; }
