* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #0d47a1;
  --secondary: #ffd600;
  --dark: #0a2c5d;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-blue: #e3f2fd;
  --light-gray: #dee2e6;
}

body {
  background-color: var(--light);
  color: #333;
  line-height: 1.6;
}

/* Topbar Styles */
.topbar {
  background-color: var(--dark);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info,
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  color: white;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary);
}

/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  color: var(--primary);
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
}

.nav-login {
  background: transparent;
  color: var(--primary);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  border: 2px solid var(--primary);
  margin-right: 15px;
}

.nav-login:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(180deg);
}

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #1976d2 100%);
  color: white;
  margin-top: 0;
  padding: 20px 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.15;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 90%;
  opacity: 0.9;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #ffc107;
}

.booking-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: fadeIn 1s ease-out;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 400px;
}

.form-title {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 18px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: #fff;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.15);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.features {
  display: flex;
  margin-top: 40px;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  font-size: 1.5rem;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-weight: 500;
}

/* About Section Styles */
.about-main-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
}

.about-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.about-section-title h2 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-section-title .about-divider {
  height: 4px;
  width: 80px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
}

.about-section-title p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-main-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 100%;
}

.about-image-1,
.about-image-2 {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.about-image-1 {
  background: url("https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80")
    center/cover;
}

.about-image-2 {
  background: url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80")
    center/cover;
}

.about-image-1:hover,
.about-image-2:hover {
  transform: scale(1.03);
}

.about-main-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 3px solid var(--secondary);
  border-radius: 15px;
  z-index: -1;
}

.about-main-content h3 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-main-content h3 span {
  color: var(--secondary);
}

.about-main-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

.about-highlight-box {
  background: var(--light-blue);
  border-left: 4px solid var(--secondary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.about-mission-card,
.about-vision-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--primary);
}

.about-mission-card:hover,
.about-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-mission-card i,
.about-vision-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  background: rgba(13, 71, 161, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-mission-card h4,
.about-vision-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 700;
}

/* Stats Section Styles */
.stats-main-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1976d2 100%);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.05;
}

.stats-main-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.stats-section-title h2 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.stats-section-title .stats-divider {
  height: 4px;
  width: 80px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
}

.stats-section-title p {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.stats-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.stats-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stats-item i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.stats-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stats-text {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Services Section Styles */
.services-main-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  color: #333;
  position: relative;
  overflow: hidden;
}

.services-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
}

.services-main-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-section-title h2 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.services-section-title .services-divider {
  height: 4px;
  width: 80px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
  margin-bottom: 20px;
}

.services-section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.services-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  transform: translateY(0);
}

.services-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: height 0.4s ease;
}

.services-card:hover::before {
  height: 100%;
}

.services-icon {
  width: 90px;
  height: 90px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.services-card:hover .services-icon {
  background: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

.services-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.services-card:hover .services-icon i {
  color: var(--dark);
}

.services-content h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.services-card:hover h3 {
  color: white;
}

.services-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
  transition: color 0.4s ease;
}

.services-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.services-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.services-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary);
  z-index: -1;
  transition: width 0.4s ease;
}

.services-btn:hover {
  color: var(--dark);
  border-color: var(--secondary);
}

.services-btn:hover::before {
  width: 100%;
}

.services-card:hover .services-btn {
  color: white;
  border-color: var(--secondary);
}

/* Services Decorative Elements */
.services-circle-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.05);
  z-index: 1;
}

.services-circle-1 {
  top: -150px;
  right: -150px;
}

.services-circle-2 {
  bottom: -150px;
  left: -150px;
}

/* Services Responsive Design */
@media (max-width: 992px) {
  .services-main-section {
    padding: 80px 0;
  }

  .services-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-section-title h2 {
    font-size: 2.2rem;
  }

  .services-section-title p {
    font-size: 1rem;
    margin: 15px auto 0;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-card {
    padding: 30px 20px;
  }

  .services-main-section {
    padding: 60px 0;
  }

  .services-main-container {
    width: 95%;
  }

  .services-icon {
    width: 70px;
    height: 70px;
  }

  .services-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .services-section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .services-section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .services-main-section {
    padding: 50px 0;
  }

  .services-card {
    padding: 25px 15px;
  }

  .services-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .services-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .services-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .services-icon i {
    font-size: 1.8rem;
  }

  .services-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .services-circle-deco {
    width: 200px;
    height: 200px;
  }

  .services-circle-1 {
    top: -100px;
    right: -100px;
  }

  .services-circle-2 {
    bottom: -100px;
    left: -100px;
  }
}

@media (max-width: 420px) {
  .services-section-title h2 {
    font-size: 1.6rem;
  }

  .services-content h3 {
    font-size: 1.3rem;
  }

  .services-card {
    padding: 20px 12px;
  }

  .services-icon {
    width: 55px;
    height: 55px;
  }

  .services-icon i {
    font-size: 1.6rem;
  }
}

/* Car Listing Section Styles */
.fleet-main-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  color: #333;
  position: relative;
  overflow: hidden;
}

.fleet-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
}

.fleet-main-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
  transform: rotate(180deg);
}

.fleet-main-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fleet-section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.fleet-section-title h2 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.fleet-section-title .fleet-divider {
  height: 4px;
  width: 80px;
  background: var(--secondary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.fleet-section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.fleet-filter-bar {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.fleet-filter-group {
  flex: 1;
  min-width: 150px;
}

.fleet-filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.fleet-filter-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.fleet-filter-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.fleet-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.fleet-car-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.fleet-car-card.show {
  opacity: 1;
  transform: translateY(0);
}

.fleet-car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fleet-car-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 2;
}

.fleet-car-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.fleet-car-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.fleet-car-info {
  padding: 25px;
}

.fleet-car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.fleet-car-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.fleet-car-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.fleet-car-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.fleet-car-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.fleet-car-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-car-detail i {
  width: 36px;
  height: 36px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.fleet-car-detail span {
  font-size: 0.95rem;
  color: var(--gray);
}

.fleet-car-actions {
  display: flex;
  gap: 10px;
}

.fleet-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 1rem;
}

.fleet-btn-primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.fleet-btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.fleet-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.fleet-btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.fleet-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.fleet-page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: none;
  font-size: 1rem;
}

.fleet-page-item:hover:not(.disabled),
.fleet-page-item.active {
  background: var(--primary);
  color: white;
}

.fleet-page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 20px;
    display: block;
    width: 100%;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: var(--light);
    color: var(--primary);
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-buttons {
    display: none;
  }

  /* Mobile menu buttons */
  .mobile-nav-buttons {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
  }

  .mobile-nav-buttons .nav-login,
  .mobile-nav-buttons .nav-cta {
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-nav-buttons .nav-login {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-right: 0;
  }

  .mobile-nav-buttons .nav-login:hover {
    background: var(--primary);
    color: white;
  }

  .mobile-nav-buttons .nav-cta {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }

  .mobile-nav-buttons .nav-cta:hover {
    background: var(--dark);
    border-color: var(--dark);
  }
}

/* Hide mobile buttons in desktop view */
.mobile-nav-buttons {
  display: none;
}

/* Responsive Design - 992px and below */
@media (max-width: 992px) {
  .topbar {
    font-size: 0.8rem;
  }

  .topbar-container {
    width: 95%;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info,
  .social-links {
    justify-content: center;
    gap: 15px;
  }

  .navbar-container {
    width: 95%;
    padding: 12px 0;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1.6rem;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 95%;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1.1rem;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .booking-form {
    order: 2;
    min-width: auto;
    padding: 40px 35px;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
  }

  .form-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .features {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .feature i {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  /* About Section */
  .about-main-section {
    padding: 80px 0;
  }

  .about-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 95%;
  }

  .about-section-title h2 {
    font-size: 2.4rem;
  }

  .about-main-image {
    min-height: 400px;
  }

  .about-image-1,
  .about-image-2 {
    min-height: 180px;
  }

  .about-main-content h3 {
    font-size: 1.9rem;
    text-align: center;
  }

  .about-main-content p {
    text-align: center;
  }

  .about-mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Stats Section */
  .stats-main-section {
    padding: 80px 0;
  }

  .stats-section-title h2 {
    font-size: 2.4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-item {
    padding: 25px 15px;
  }

  .stats-number {
    font-size: 2.4rem;
  }

  /* Services Section */
  .services-main-section {
    padding: 80px 0;
  }

  .services-section-title h2 {
    font-size: 2.4rem;
  }

  .services-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Fleet Section */
  .fleet-main-section {
    padding: 80px 0;
  }

  .fleet-section-title h2 {
    font-size: 2.4rem;
  }

  .fleet-filter-bar {
    flex-direction: column;
    gap: 15px;
  }

  .fleet-filter-group {
    min-width: auto;
  }

  .fleet-cars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive Design - 768px and below */
@media (max-width: 768px) {
  .topbar {
    padding: 8px 0;
  }

  .navbar-container {
    padding: 10px 0;
  }

  /* Hero Section */
  .hero {
    padding: 30px 0 50px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .booking-form {
    padding: 35px 30px;
    max-width: 550px;
    width: 100%;
  }

  .form-title {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }

  .form-group input,
  .form-group select {
    padding: 16px 15px;
    font-size: 1.05rem;
  }

  .form-group label {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .features {
    gap: 15px;
  }

  /* About Section */
  .about-main-section {
    padding: 60px 0;
  }

  .about-section-title h2 {
    font-size: 2rem;
  }

  .about-section-title p {
    font-size: 1rem;
    margin: 15px auto 0;
  }

  .about-main-image {
    min-height: 350px;
  }

  .about-image-1,
  .about-image-2 {
    min-height: 160px;
  }

  .about-main-content h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }

  .about-main-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .about-highlight-box {
    margin: 25px 0;
    padding: 15px;
  }

  .about-mission-card,
  .about-vision-card {
    padding: 25px 20px;
  }

  .about-mission-card i,
  .about-vision-card i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .about-mission-card h4,
  .about-vision-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  /* Stats Section */
  .stats-main-section {
    padding: 60px 0;
  }

  .stats-section-title h2 {
    font-size: 2rem;
  }

  .stats-section-title p {
    font-size: 1rem;
    margin: 15px auto 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-item {
    padding: 20px 15px;
  }

  .stats-item i {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .stats-number {
    font-size: 2rem;
  }

  .stats-text {
    font-size: 1rem;
  }

  /* Services Section */
  .services-main-section {
    padding: 60px 0;
  }

  .services-section-title h2 {
    font-size: 2rem;
  }

  .services-section-title p {
    font-size: 1rem;
    margin: 15px auto 0;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-card {
    padding: 30px 20px;
  }

  .services-main-container {
    width: 95%;
  }

  .services-icon {
    width: 70px;
    height: 70px;
  }

  .services-icon i {
    font-size: 2rem;
  }

  .services-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .services-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Fleet Section */
  .fleet-main-section {
    padding: 60px 0;
  }

  .fleet-section-title h2 {
    font-size: 2rem;
  }

  .fleet-section-title p {
    font-size: 1rem;
    margin: 15px auto 0;
  }

  .fleet-cars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-car-info {
    padding: 20px;
  }

  .fleet-car-title {
    font-size: 1.2rem;
  }

  .fleet-car-price {
    font-size: 1.3rem;
  }

  .fleet-car-details {
    gap: 12px;
    margin-bottom: 20px;
  }

  .fleet-car-detail i {
    width: 32px;
    height: 32px;
  }

  .fleet-car-detail span {
    font-size: 0.9rem;
  }
}

/* Responsive Design - 576px and below */
@media (max-width: 576px) {
  .topbar-container {
    padding: 0 10px;
  }

  .navbar-container {
    width: 98%;
    padding: 8px 0;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1.4rem;
  }

  /* Hero Section */
  .hero {
    padding: 20px 0 40px;
  }

  .container {
    width: 98%;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .booking-form {
    padding: 30px 25px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }

  .form-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 22px;
  }

  .form-group input,
  .form-group select {
    padding: 15px 14px;
    font-size: 1rem;
  }

  .form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  /* About Section */
  .about-main-section {
    padding: 50px 0;
  }

  .about-main-container {
    width: 98%;
    gap: 30px;
  }

  .about-section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .about-section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .about-main-image {
    min-height: 300px;
    order: 1;
  }

  .about-image-1,
  .about-image-2 {
    min-height: 140px;
  }

  .about-main-content {
    order: 2;
  }

  .about-main-content h3 {
    font-size: 1.5rem;
  }

  .about-main-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-highlight-box {
    padding: 12px 15px;
    margin: 20px 0;
  }

  .about-mission-card,
  .about-vision-card {
    padding: 20px 15px;
  }

  .about-mission-card i,
  .about-vision-card i {
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }

  .about-mission-card h4,
  .about-vision-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* Stats Section */
  .stats-main-section {
    padding: 50px 0;
  }

  .stats-main-container {
    width: 98%;
  }

  .stats-section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .stats-section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .stats-item {
    padding: 18px 12px;
  }

  .stats-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .stats-number {
    font-size: 1.8rem;
  }

  .stats-text {
    font-size: 0.95rem;
  }

  /* Services Section */
  .services-main-section {
    padding: 50px 0;
  }

  .services-section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .services-section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-card {
    padding: 25px 15px;
  }

  .services-main-container {
    width: 95%;
  }

  .services-icon {
    width: 70px;
    height: 70px;
  }

  .services-icon i {
    font-size: 2rem;
  }

  .services-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .services-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Fleet Section */
  .fleet-main-section {
    padding: 50px 0;
  }

  .fleet-section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .fleet-section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .fleet-filter-bar {
    padding: 15px;
    margin-bottom: 30px;
  }

  .fleet-filter-group label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .fleet-filter-group select {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .fleet-car-info {
    padding: 15px;
  }

  .fleet-car-title {
    font-size: 1rem;
  }

  .fleet-car-price {
    font-size: 1.1rem;
  }

  .fleet-car-detail span {
    font-size: 0.8rem;
  }

  .fleet-btn {
    padding: 6px;
    font-size: 0.85rem;
  }

  .fleet-page-item {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Responsive Design - 480px and below */
@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .navbar-container {
    width: 100%;
    padding: 6px 15px;
  }

  /* Hero Section */
  .hero {
    padding: 15px 0 30px;
  }

  .container {
    width: 100%;
    padding: 0 15px;
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .booking-form {
    padding: 25px 20px;
    margin: 0 auto;
    width: 100%;
  }

  .form-title {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }

  .form-group {
    margin-bottom: 22px;
  }

  .form-group input,
  .form-group select {
    padding: 14px 12px;
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  /* About Section */
  .about-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .about-section-title h2 {
    font-size: 1.6rem;
  }

  .about-main-content h3 {
    font-size: 1.3rem;
  }

  .about-main-content p {
    font-size: 0.9rem;
  }

  /* Stats Section */
  .stats-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .stats-section-title h2 {
    font-size: 1.6rem;
  }

  .stats-item {
    padding: 15px 10px;
  }

  .stats-number {
    font-size: 1.6rem;
  }

  /* Services Section */
  .services-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .services-section-title h2 {
    font-size: 1.6rem;
  }

  .services-card {
    padding: 20px 12px;
  }

  .services-icon {
    width: 60px;
    height: 60px;
  }

  .services-icon i {
    font-size: 1.8rem;
  }

  .services-content h3 {
    font-size: 1.2rem;
  }

  .services-content p {
    font-size: 0.85rem;
  }

  /* Fleet Section */
  .fleet-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .fleet-section-title h2 {
    font-size: 1.6rem;
  }

  .fleet-filter-bar {
    padding: 10px;
  }

  .fleet-car-info {
    padding: 10px;
  }

  .fleet-car-title {
    font-size: 1rem;
  }

  .fleet-car-price {
    font-size: 1.1rem;
  }

  .fleet-car-detail span {
    font-size: 0.8rem;
  }

  .fleet-btn {
    padding: 6px;
    font-size: 0.85rem;
  }

  .fleet-page-item {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Responsive Design - 360px and below (Extra Small Devices) */
@media (max-width: 360px) {
  .navbar-container {
    padding: 4px 10px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-icon {
    font-size: 1.3rem;
  }

  /* Hero Section */
  .hero {
    padding: 10px 0 25px;
  }

  .container {
    padding: 0 10px;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .booking-form {
    padding: 22px 18px;
    margin: 0 auto;
    width: 100%;
  }

  .form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* About Section */
  .about-main-container {
    padding: 0 10px;
  }

  .about-section-title h2 {
    font-size: 1.4rem;
  }

  .about-main-content h3 {
    font-size: 1.3rem;
  }

  .about-main-content p {
    font-size: 0.85rem;
  }

  /* Stats Section */
  .stats-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .stats-section-title h2 {
    font-size: 1.6rem;
  }

  .stats-item {
    padding: 15px 10px;
  }

  .stats-number {
    font-size: 1.6rem;
  }

  /* Services Section */
  .services-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .services-section-title h2 {
    font-size: 1.6rem;
  }

  .services-card {
    padding: 20px 12px;
  }

  .services-content h3 {
    font-size: 1.2rem;
  }

  .services-content p {
    font-size: 0.85rem;
  }

  /* Fleet Section */
  .fleet-main-container {
    width: 100%;
    padding: 0 15px;
  }

  .fleet-section-title h2 {
    font-size: 1.6rem;
  }

  .fleet-filter-bar {
    padding: 10px;
  }

  .fleet-car-info {
    padding: 10px;
  }

  .fleet-car-title {
    font-size: 1rem;
  }

  .fleet-car-price {
    font-size: 1.1rem;
  }

  .fleet-car-detail span {
    font-size: 0.8rem;
  }

  .fleet-btn {
    padding: 6px;
    font-size: 0.85rem;
  }

  .fleet-page-item {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Performance optimizations */
@media (max-width: 768px) {
  .hero::before,
  .about-main-section::before,
  .stats-main-section::before,
  .services-main-section::before,
  .fleet-main-section::before {
    opacity: 0.02;
  }

  .services-circle-deco {
    display: none;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .fleet-btn,
  .services-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fleet-page-item {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Contact Section Styles */
.contact-main-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.contact-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
}

.contact-section-header {
  text-align: center;
  padding: 60px 20px 40px;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 2;
}

.contact-section-header h2 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-section-header .contact-divider {
  height: 4px;
  width: 80px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
  margin-bottom: 20px;
}

.contact-section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

.contact-info-panel {
  padding: 40px 50px;
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-details-panel {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
  text-align: left;
}

.contact-detail-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  font-size: 1.4rem;
  color: var(--secondary);
}

.contact-detail-text h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.contact-detail-text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-social-links {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.contact-social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-5px);
}

.contact-form-panel {
  padding: 40px 50px;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
}

.contact-form-control {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: #fff;
  font-family: inherit;
}

.contact-form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
  transform: translateY(-2px);
}

textarea.contact-form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-btn {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
  margin-top: 10px;
}

.contact-btn:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.4);
}

.contact-btn i {
  margin-right: 12px;
}

.contact-map-container {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-decor-circle {
  position: fixed;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.05);
  z-index: 1;
  pointer-events: none;
}

.contact-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.08) 0%,
    transparent 70%
  );
}

.contact-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(13, 71, 161, 0.06) 0% 0%,
    transparent 70%
  );
}

/* Contact Responsive Design */
@media (max-width: 1024px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 35px 40px;
  }
}

@media (max-width: 768px) {
  .contact-section-header {
    padding: 40px 20px 30px;
  }

  .contact-section-header h2 {
    font-size: 2.2rem;
  }

  .contact-main-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 25px;
  }

  .contact-info-panel h3,
  .contact-form-title {
    font-size: 1.7rem;
  }

  .contact-map-container {
    height: 180px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .contact-section-header {
    padding: 30px 15px 20px;
  }

  .contact-section-header h2 {
    font-size: 1.9rem;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 25px 20px;
  }

  .contact-detail-item {
    margin-bottom: 20px;
  }

  .contact-detail-icon {
    width: 45px;
    height: 45px;
  }

  .contact-social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-form-control {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .contact-btn {
    padding: 15px 35px;
    font-size: 1rem;
  }

  .contact-map-container {
    height: 150px;
    margin-top: 20px;
  }
}

/* Footer Styles */
footer {
  background: var(--dark);
  color: white;
  padding-top: 70px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

/* Footer About Column */
.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-about .footer-logo-icon {
  color: var(--secondary);
  font-size: 2rem;
}

.footer-about .footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-about .footer-logo-text span {
  color: var(--secondary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.8;
}

/* Footer Links Column */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-links ul li a i {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* Footer Contact Column */
.footer-contact .footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact .footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact .footer-contact-icon i {
  color: var(--secondary);
}

.footer-contact .footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact .footer-contact-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact .footer-contact-text a:hover {
  color: var(--secondary);
}

/* Footer Newsletter Column */
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.footer-newsletter-form button {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: #ffc107;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
}

.footer-payment-methods {
  display: flex;
  gap: 15px;
}

.footer-payment-methods i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Main Content Styles */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.main-content-inner {
  text-align: center;
  max-width: 800px;
}

.main-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0a2c5d;
}

.main-content p {
  font-size: 1.2rem;
  color: #6c757d;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Footer Animation */
.footer-col {
  animation: fadeIn 0.5s ease-out;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

/* Scroll to Top Button Styles */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3),
    0 0 18px 4px rgba(13, 71, 161, 0.4); /* Added glow */
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4),
    0 0 24px 6px rgba(13, 71, 161, 0.5); /* Stronger glow on hover */
}

.scroll-to-top:active {
  transform: translateY(-2px);
}
/* message floating icon */

/* Floating Message Button Styles */
.floating-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

/* When scroll-to-top is visible, move message button above it */
.scroll-to-top.show ~ .floating-message,
.floating-message.scroll-visible {
  bottom: 90px;
}

.floating-message:hover {
  background: #ffc107;
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.floating-message:active {
  transform: translateY(-2px);
}

/* Responsive adjustments for scroll button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .floating-message {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .scroll-to-top.show ~ .floating-message,
  .floating-message.scroll-visible {
    bottom: 75px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .floating-message {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .scroll-to-top.show ~ .floating-message,
  .floating-message.scroll-visible {
    bottom: 65px;
  }
}

/* login */

.container-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

/* Left Side - Car Image */
.login-left {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: white;
  min-height: 70vh;
}

.login-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 44, 93, 0.9),
    rgba(13, 71, 161, 0.7)
  );
}

.login-left-content {
  position: relative;
  z-index: 2;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.welcome-text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.feature i {
  color: var(--secondary);
  font-size: 1.3rem;
}

/* Right Side - Login Form */
.login-right {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  min-height: 90vh;
}

.login-header {
  margin-bottom: 40px;
}

.login-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.login-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.login-header p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.login-header p a:hover {
  text-decoration: underline;
}

.login-header-otp {
  margin-bottom: 40px;
  text-align: center;
}

.login-header-otp h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.login-header-otp p {
  color: var(--gray);
  font-size: 1.1rem;
}

.login-header-otp p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.login-header-otp p a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.remember-me label {
  color: var(--gray);
  cursor: pointer;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-login {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.btn-login:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.4);
}

.btn-google {
  background: white;
  color: #333;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.btn-google:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: var(--gray);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.divider span {
  padding: 0 15px;
  font-size: 0.9rem;
}

.signup-link {
  text-align: center;
  margin-top: 30px;
  color: var(--gray);
}

.signup-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signup-link a:hover {
  text-decoration: underline;
}
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.otp-inputs input {
  width: 60px; /* Increased width */
  height: 60px; /* Increased height */
  font-size: 2.5rem; /* Increased font size */
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container-login {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 30px;
    min-height: 30vh;
  }

  .login-right {
    min-height: 40vh;
  }

  .logo {
    top: 20px;
    left: 20px;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .features {
    display: none;
  }
}

@media (max-width: 480px) {
  .login-right {
    padding: 40px 25px;
  }

  .login-header h2 {
    font-size: 1.8rem;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .forgot-password {
    margin-left: 26px;
  }
}
@media (max-width: 600px) {
  .otp-inputs {
    gap: 5px;
  }
  .otp-inputs input {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-right {
  animation: fadeIn 0.8s ease-out;
  opacity: 1;
  transform: translateY(0);
}

.login-right {
  animation: fadeIn 0.8s ease-out;
}

/* CAR LISTING PAGE */

.container-listing {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.listing-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

/* Page Title */
.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.page-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Main Content */
.main-content-listing {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Filters Section */
.filters {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-gray);
}

.filter-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-title i {
  color: var(--primary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.filter-option label {
  color: var(--gray);
  cursor: pointer;
}

.price-slider {
  width: 100%;
  height: 5px;
  background: var(--light-gray);
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
}

.price-slider .progress {
  height: 5px;
  background: var(--primary);
  border-radius: 5px;
  position: absolute;
  left: 25%;
  right: 25%;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
}

.price-input {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.price-input .field {
  width: 45%;
}

.field input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
}

/* Sorting Bar */
.sorting-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.results-count {
  color: var(--dark);
  font-weight: 600;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-label {
  color: var(--gray);
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

/* Car Grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.car-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.car-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.car-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.car-info {
  padding: 20px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.card-actions .btn {
  width: 50%;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.car-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.car-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.car-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.car-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.car-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.95rem;
}

.car-detail i {
  color: var(--primary);
  width: 20px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-item:hover,
.page-item.active {
  background: var(--primary);
  color: white;
}

.page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-content-listing {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .car-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
  }

  .sorting-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .car-grid {
    grid-template-columns: 1fr;
  }

  .sort-options {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* chat modal css */

/* Chat Modal Styles */
.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.chat-modal.show {
  opacity: 1;
  visibility: visible;
}

.chat-container {
  background: white;
  border-radius: 20px;
  width: 400px;
  max-width: 90vw;
  height: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
}

.chat-modal.show .chat-container {
  transform: scale(1) translateY(0);
}

.chat-header {
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.agent-details h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.status-online {
  font-size: 0.85rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-online::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #f8f9fa;
}

.message {
  display: flex;
  gap: 10px;
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.bot-message .message-avatar {
  background: var(--primary);
  color: white;
}

.user-message .message-avatar {
  background: var(--secondary);
  color: var(--dark);
}

.message-content {
  background: white;
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
  background: var(--primary);
  color: white;
}

.message-content p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 5px;
  display: block;
}

.chat-input-container {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  background: white;
  border-radius: 0 0 20px 20px;
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.suggestion-btn {
  background: #e9ecef;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark);
}

.suggestion-btn:hover {
  background: var(--primary);
  color: white;
}

.chat-input-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  outline: none;
  font-size: 0.95rem;
}

.chat-input-area input:focus {
  border-color: var(--primary);
}

.send-btn {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: var(--dark);
  transform: scale(1.1);
}

.send-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--gray);
  border-radius: 50%;
  animation: typing 1.5s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Responsive chat modal */
@media (max-width: 768px) {
  .chat-container {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .chat-header {
    border-radius: 0;
  }

  .chat-input-container {
    border-radius: 0;
  }

  .chat-suggestions {
    gap: 5px;
  }

  .suggestion-btn {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}
@media (max-width: 480px) {
  .chat-messages {
    padding: 15px;
  }

  .chat-input-container {
    padding: 15px;
  }

  .message {
    max-width: 90%;
  }

  .chat-suggestions {
    flex-direction: column;
    gap: 8px;
  }

  .suggestion-btn {
    width: 100%;
    text-align: left;
  }
}

/* car detail */

.container-car-detail {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  background: rgba(13, 71, 161, 0.05);
  padding: 20px 0;
  margin-bottom: 40px;
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
}

.breadcrumb-link {
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--dark);
}

.breadcrumb-divider {
  color: var(--gray);
  opacity: 0.7;
}

.breadcrumb-current {
  color: var(--dark);
  font-weight: 600;
}

/* Car Detail Section */
.car-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Car Gallery */
.car-gallery {
  position: relative;
}

.main-image {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.thumbnail.active {
  border-color: var(--secondary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Car Info */
.car-info {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.car-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.car-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 5px;
}

.car-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.car-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--light);
  border-radius: 8px;
}

.spec-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 71, 161, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.spec-text span {
  display: block;
}

.spec-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.spec-value {
  font-weight: 600;
  color: var(--dark);
}

.action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-3px);
}

/* Tabs Section */
.tabs-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  overflow: hidden;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
  background: var(--light);
}

.tab-btn {
  flex: 1;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  background: transparent;
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
}

.tab-content {
  padding: 40px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Overview Tab */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.overview-text {
  line-height: 1.8;
  color: var(--gray);
}

.overview-text p {
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table h3 {
  background: var(--primary);
  color: white;
  margin: 0;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th {
  background: var(--light);
  color: var(--dark);
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  border-bottom: 2px solid var(--light-gray);
}

.specs-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-gray);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover {
  background: rgba(13, 71, 161, 0.02);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
  background: rgba(13, 71, 161, 0.03);
}

.specs-table td:last-child {
  color: var(--gray);
}

/* Features Tab */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(13, 71, 161, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-text-details {
  font-weight: 600;
  color: var(--dark);
}

/* Location Tab */
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location-info {
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
}

.location-info h3 {
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
}

.location-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 71, 161, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-text {
  color: var(--gray);
}

.location-text strong {
  color: var(--dark);
  display: block;
  margin-bottom: 5px;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Feedback Tab */
.feedback-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feedback-stats {
  background: var(--light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.rating-overview {
  margin-bottom: 30px;
}

.rating-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.rating-stars {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.rating-count {
  color: var(--gray);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-label {
  width: 80px;
  color: var(--gray);
}

.rating-progress {
  flex: 1;
  height: 10px;
  background: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
}

.rating-progress-inner {
  height: 100%;
  background: var(--secondary);
  border-radius: 5px;
}

.rating-percent {
  width: 40px;
  text-align: right;
  color: var(--dark);
  font-weight: 600;
}

.reviews-container {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 15px;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.user-info h4 {
  color: var(--dark);
  margin-bottom: 5px;
}

.user-info .date {
  color: var(--gray);
  font-size: 0.9rem;
}

.review-stars {
  color: var(--secondary);
}

.review-content {
  color: var(--gray);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .car-detail-section {
    grid-template-columns: 1fr;
  }

  .overview-content,
  .location-container,
  .feedback-container {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
  }

  .tabs-header {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: none;
    width: 50%;
  }

  .action-buttons {
    grid-template-columns: 1fr;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quick-specs {
    grid-template-columns: 1fr;
  }

  .tabs-header {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
  }
}

/* BOOKING */

.tab-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.tab-btn {
  outline: none;
}
.tab-pane {
  min-height: 300px;
}
.step-btn {
  margin-top: 30px;
  min-width: 180px;
}
.booking-summary-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.booking-summary-list li:last-child {
  border-bottom: none;
}
.summary-total {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
}
/* Calendar Styles */
.calendar-container {
  margin-top: 0;
  max-width: none;
  width: 100%;
}
.calendar-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 900px) {
  .calendar-row {
    flex-direction: column;
    gap: 20px;
  }
}
.calendar-inputs {
  min-width: 260px;
  max-width: 350px;
  width: 100%;
}
.calendar-grid {
  min-width: 320px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  min-width: 0;
}
.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 18px;
}
.calendar-month-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.calendar-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.06);
}
.calendar-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
}
.calendar-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.25rem;
  min-width: 160px;
  text-align: center;
  letter-spacing: 0.5px;
}
.calendar-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 8px;
  text-align: center;
}
.calendar-day,
.calendar-day-header {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  flex: none;
  min-width: 0;
}
.calendar-day-header {
  background: transparent;
  color: var(--gray);
  font-size: 0.92rem;
  cursor: default;
}
.calendar-day.available {
  background: rgba(40, 167, 69, 0.08);
  color: var(--success);
  border: 1px solid rgba(40, 167, 69, 0.18);
}
.calendar-day.booked {
  background: rgba(220, 53, 69, 0.08);
  color: var(--danger);
  border: 1px solid rgba(220, 53, 69, 0.18);
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar-day.selected,
.calendar-day.in-range {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.calendar-day.in-range {
  background: #5472d3;
  color: #fff;
  border: 1px solid #5472d3;
}
.calendar-day.today {
  border: 2px solid var(--secondary);
}
.calendar-day:empty {
  background: none;
  border: none;
  cursor: default;
}
/* Add modal styles here instead of inline */
#security-deposit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#security-deposit-modal.active {
  display: flex;
}
#security-deposit-modal .modal-content {
  background: white;
  max-width: 400px;
  width: 90%;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
}
#close-security-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3em;
  color: #888;
  cursor: pointer;
}
#security-deposit-modal h3 {
  color: var(--primary);
  margin-bottom: 12px;
}
#security-deposit-modal p {
  color: var(--dark);
  font-size: 1.07em;
}
#security-deposit-modal ul {
  margin: 14px 0 0 18px;
  color: var(--gray);
  font-size: 0.97em;
}
