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

:root {
  --primary: #0D9488;
  --primary-light: #2DD4BF;
  --primary-dark: #0F766E;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-900);
  transition: all 0.3s;
}

body.dark {
  background-color: var(--slate-950);
  color: var(--slate-100);
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.bg-primary {
  background-color: var(--primary);
}

/* Site logo styles */
.site-logo {
  display: inline-block;
  object-fit: contain;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-logo--navbar {
  height: 45px;
  width: auto;
}

.site-logo--footer {
  height: 35px;
  width: auto;
}

.site-logo:hover {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .site-logo--navbar {
    height: 38px;
  }

  .site-logo--footer {
    height: 30px;
  }
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.border-primary {
  border-color: var(--primary);
}

.text-slate-100 {
  color: var(--slate-100);
}

.text-slate-200 {
  color: var(--slate-200);
}

.text-slate-300 {
  color: var(--slate-300);
}

.text-slate-400 {
  color: var(--slate-400);
}

.text-slate-500 {
  color: var(--slate-500);
}

.text-slate-600 {
  color: var(--slate-600);
}

.text-slate-700 {
  color: var(--slate-700);
}

.text-slate-800 {
  color: var(--slate-800);
}

.text-slate-900 {
  color: var(--slate-900);
}

.bg-slate-50 {
  background-color: var(--slate-50);
}

.bg-slate-100 {
  background-color: var(--slate-100);
}

.bg-slate-800 {
  background-color: var(--slate-800);
}

.bg-slate-900 {
  background-color: var(--slate-900);
}

.bg-slate-950 {
  background-color: var(--slate-950);
}

body.dark .dark\:bg-slate-800 {
  background-color: var(--slate-800);
}

body.dark .dark\:bg-slate-900 {
  background-color: var(--slate-900);
}

body.dark .dark\:bg-slate-950 {
  background-color: var(--slate-950);
}

body.dark .dark\:text-white {
  color: white;
}

body.dark .dark\:text-slate-100 {
  color: var(--slate-100);
}

body.dark .dark\:text-slate-300 {
  color: var(--slate-300);
}

body.dark .dark\:text-slate-400 {
  color: var(--slate-400);
}

body.dark .dark\:border-slate-700 {
  border-color: var(--slate-700);
}

body.dark .dark\:border-slate-800 {
  border-color: var(--slate-800);
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.dark .glass {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in {
  animation: fade-in 0.5s ease-in;
}

.animate-fade-in-down {
  animation: fade-in-down 0.3s ease-out;
}

/* Layout Classes */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-50 {
  z-index: 50;
}

.z-40 {
  z-index: 40;
}

.z-20 {
  z-index: 20;
}

.z-10 {
  z-index: 10;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.space-x-2>*+* {
  margin-left: 0.5rem;
}

.space-x-3>*+* {
  margin-left: 0.75rem;
}

.space-x-4>*+* {
  margin-left: 1rem;
}

.space-x-6>*+* {
  margin-left: 1.5rem;
}

.space-x-8>*+* {
  margin-left: 2rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

/* Grid */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

/* Width & Height */
.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-60 {
  height: 15rem;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.min-h-60vh {
  min-height: 60vh;
}

/* Border */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-8 {
  border-width: 8px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-8 {
  border-top-width: 8px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-none {
  border: none;
}

.border-slate-100 {
  border-color: var(--slate-100);
}

.border-slate-200 {
  border-color: var(--slate-200);
}

.border-slate-700 {
  border-color: var(--slate-700);
}

.border-slate-800 {
  border-color: var(--slate-800);
}

.border-white {
  border-color: white;
}

/* Rounded */
.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Shadow */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Text */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.font-light {
  font-weight: 300;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Transition */
.transition-all {
  transition: all 0.3s;
}

.transition-colors {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.transition-transform {
  transition: transform 0.3s;
}

/* Transform */
.transform {
  transform: translateZ(0);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:rotate-12:hover {
  transform: rotate(12deg);
}

.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Button Styles */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Navbar Scrolled State */
.navbar-scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

body.dark .navbar-scrolled {
  background: rgba(15, 23, 42, 0.7);
}

/* Vehicle Cards */
.vehicle-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.dark .vehicle-card {
  background: var(--slate-900);
  border-color: var(--slate-800);
}

.vehicle-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transform: translateY(-4px);
}

.vehicle-image {
  position: relative;
  height: 15rem;
  overflow: hidden;
}

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

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.1);
}

/* Input Styles */
input,
select,
textarea {
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }

  .md\:p-12 {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:block {
    display: block;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Specific Page Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 85vh;
    padding-top: 6rem;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .ai-concierge-box {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  color: white;
}

/* AI Concierge Box */
.ai-concierge-box {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 20;
  width: 24rem;
}

/* Contact Map */
.contact-map {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 4px solid white;
}

body.dark .contact-map {
  border-color: var(--slate-900);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Feature Cards */
.feature-card {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  color: var(--primary);
  transition: all 0.3s;
}

body.dark .feature-icon {
  background: var(--slate-800);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
}

/* Booking Success */
.booking-success-icon {
  width: 5rem;
  height: 5rem;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Search Input Styles */
.search-container {
  margin-bottom: 3rem;
  position: relative;
  max-width: 42rem;
}

.search-input {
  width: 100%;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid var(--slate-200);
  outline: none;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

body.dark .search-input {
  background: var(--slate-900);
  border-color: var(--slate-800);
  color: var(--slate-100);
}

.search-input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
  transition: color 0.3s;
}

.search-container:focus-within .search-icon {
  color: var(--primary);
}

.search-clear {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  cursor: pointer;
  transition: color 0.3s;
}

.search-clear:hover {
  color: var(--primary);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 5rem 0;
  background: rgba(241, 245, 249, 0.5);
  border-radius: 1.5rem;
  border: 2px dashed var(--slate-200);
}

body.dark .empty-state {
  background: rgba(15, 23, 42, 0.5);
  border-color: var(--slate-800);
}

/* Hero & Buttons */
.hero-badge {
  background: rgba(13, 148, 136, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2DD4BF;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  color: var(--slate-900);
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-secondary:hover {
  background: var(--slate-100);
}

body.dark .btn-secondary {
  background: var(--slate-800);
  color: var(--slate-100);
}

body.dark .btn-secondary:hover {
  background: var(--slate-700);
}

/* AI Concierge Box */
.ai-box-border {
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.ai-icon-circle {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-subtext {
  color: var(--slate-400);
}

.ai-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--slate-200);
  outline: none;
}

.ai-input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

body.dark .ai-input {
  background: rgba(15, 23, 42, 0.5);
  border-color: var(--slate-700);
  color: var(--slate-100);
}

.ai-submit-btn {
  width: 100%;
  background: var(--slate-900);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
}

.ai-submit-btn:hover {
  background: black;
}

.ai-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-style: italic;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--primary);
}

/* Vehicle Card Enhancements */
.vehicle-price-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

body.dark .vehicle-price-badge {
  background: rgba(15, 23, 42, 0.9);
}

.vehicle-card-btn {
  width: 100%;
  background: var(--slate-50);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.vehicle-card-btn:hover {
  background: var(--primary);
  color: white;
}

body.dark .vehicle-card-btn {
  background: var(--slate-800);
}

body.dark .vehicle-card-btn:hover {
  background: var(--primary);
  color: white;
}

/* Booking Page */
.selected-vehicle-block {
  background: rgba(13, 148, 136, 0.05);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.booking-form-card {
  border: 1px solid var(--slate-100);
}

body.dark .booking-form-card {
  background: var(--slate-900);
  border-color: var(--slate-800);
}

.input-field {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--slate-50);
  border: none;
  outline: none;
  font-size: 1rem;
}

.input-field:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

body.dark .input-field {
  background: var(--slate-800);
  color: var(--slate-100);
}

.min-h-booking {
  min-height: 60vh;
}

.booking-success-card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  text-align: center;
  border-top: 8px solid var(--primary);
}

body.dark .booking-success-card {
  background: var(--slate-900);
  border-color: var(--primary);
}

.booking-success-text {
  color: var(--slate-500);
  line-height: 1.625;
}

.booking-feature-icon {
  background: rgba(13, 148, 136, 0.1);
}

/* Empty State */
.empty-state-icon {
  color: var(--slate-300);
}

body.dark .empty-state-icon {
  color: var(--slate-600);
}

.empty-state-title {
  color: var(--slate-600);
}

body.dark .empty-state-title {
  color: var(--slate-300);
}

.empty-state-text {
  color: var(--slate-500);
}

/* Contact Cards */
.contact-card:hover {
  border-color: var(--primary);
}

.contact-card-icon {
  background: rgba(13, 148, 136, 0.1);
}

/* Dark mode navbar & nav links */
body.dark #theme-toggle svg,
body.dark #theme-toggle-mobile svg {
  color: var(--slate-300);
}

body.dark #theme-toggle .text-yellow-500 {
  color: #eab308 !important;
}

body.dark #navbar .nav-link {
  color: var(--slate-300);
}

body.dark #navbar .nav-link:hover,
body.dark #navbar .nav-link.text-primary {
  color: var(--primary) !important;
}

/* Dark mode section backgrounds */
body.dark section.bg-white,
body.dark .section-featured {
  background: var(--slate-900) !important;
}

body.dark section.bg-slate-50 {
  background: var(--slate-950) !important;
}

/* Section Heading Divider */
.section-divider {
  width: 5rem;
  height: 0.375rem;
  background: var(--primary);
  margin: 1.5rem auto 0;
  border-radius: 9999px;
}

/* Hover Effects */
.hover\:bg-primary:hover {
  background-color: var(--primary);
}

.hover\:bg-primary-dark:hover {
  background-color: var(--primary-dark);
}

.hover\:bg-black:hover {
  background-color: black;
}

.hover\:bg-slate-100:hover {
  background-color: var(--slate-100);
}

.hover\:bg-green-600:hover {
  background-color: #16a34a;
}

.hover\:text-primary:hover {
  color: var(--primary);
}

.hover\:text-white:hover {
  color: white;
}

.hover\:border-primary:hover {
  border-color: var(--primary);
}

.hover\:underline:hover {
  text-decoration: underline;
}

body.dark .dark\:hover\:bg-primary:hover {
  background-color: var(--primary);
}

/* Additional Color Classes */
.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.bg-green-500 {
  background-color: #22c55e;
}

.text-green-600 {
  color: #16a34a;
}

.bg-red-500 {
  background-color: #ef4444;
}

/* Outline None */
.outline-none {
  outline: none;
}

/* Ring Focus */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

/* Pointer Events */
.pointer-events-none {
  pointer-events: none;
}

/* Col Span */
.col-span-1 {
  grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
}

/* Flexbox Auto */
.sm\:flex-row {
  flex-direction: row;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
}

/* Deposit Badge */
.deposit-badge {
  background: #fff3cd;
  color: #b8860b;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 700;
  margin: 10px 0;
  display: block;
  text-align: center;
  font-size: 14px;
}
