@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary: #ff0000;
  --primary-dark: #cc0000;

  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --text-light: #ffffff;

  --border-light: #e0e0e0;

  --blue: #3498db;
  --blue-dark: #2980b9;

  --yellow: #ffc107;
  --orange: #ff9800;

  --gray-light: #f7fafc;
  --gray-medium: #718096;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* HERO SECTION */

.logo img {
  height: 80px;
  width: 80px;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.nav__link {
  color: var(--text-dark) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  transition: color 0.3s !important;
}

.cta__button {
  background: var(--primary) !important;
  color: var(--text-light) !important;
  padding: 10px 25px !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  transition: all 0.3s;
}

.nav__link:hover {
  color: var(--primary-dark) !important;
}

.cta__button:hover {
  background: var(--primary-dark) !important;
  color: var(--text-light) !important;
}

/* HERO 2 */

.hero__section {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.search-box {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dropdown-container {
  position: relative !important;
  margin-bottom: 1rem !important;
}

.dropdown-btn {
  width: 100% !important;
  padding: 16px 20px !important;
  border: 2px solid #dee2e6 !important;
  border-radius: 8px !important;
  background: white !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: #333 !important;
}

.dropdown-btn:hover {
  border-color: #999 !important;
  background: #f8f9fa !important;
}

.dropdown-btn.open {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.chevron {
  transition: transform 0.3s ease !important;
  color: #666 !important;
}

.dropdown-btn.open .chevron {
  transform: rotate(180deg) !important;
}

.dropdown-content {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: 0 !important;
  background: white !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
  pointer-events: none;
}

.dropdown-content.show {
  max-height: 350px !important;
  opacity: 1 !important;
  pointer-events: auto;
}

.search-input-container {
  padding: 15px !important;
  border-bottom: 1px solid #eee !important;
  position: relative !important;
}

.search-input {
  width: 100% !important;
  padding: 10px 15px 10px 40px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  outline: none !important;
}

.search-input:focus {
  border-color: #dc3545 !important;
}

.search-input-icon {
  position: absolute !important;
  left: 28px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #999 !important;
}

.dropdown-list {
  max-height: 200px !important;
  overflow-y: auto !important;
}

.dropdown-item {
  padding: 14px 20px !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  color: #333 !important;
  font-size: 15px !important;
  pointer-events: auto !important;
}

.dropdown-item:hover {
  background: #ffebee !important;
  color: #333 !important;
}

.dropdown-item.active {
  background: #dc3545 !important;
  color: white !important;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
  display: none;
}

.no-results.show {
  display: block;
}

/* .find-btn {
    width: 100%;
    padding: 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
  }

  .find-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  }

  .find-btn:active {
    transform: translateY(0);
  } */

.dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.dropdown-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .search-box {
    padding: 1.5rem;
  }

  .dropdown-btn {
    padding: 14px 16px;
    font-size: 15px;
  }

  /* .find-btn {
      font-size: 18px;
      padding: 14px;
    } */
}

.search-card {
  background: rgba(16, 16, 16, 0.342);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 920px;
  width: 90%;
}
/*
.form__label {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.custom-searchable-select {
  position: relative;
}

.select-display {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.select-display:hover {
  border-color: var(--primary-dark);
}

.select-display.active {
  border-color: var(--primary-dark);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select-display .placeholder {
  color: #6c757d;
}

.select-display .selected-value {
  color: #212529;
}

.select-display i {
  color: #7f8c8d;
  transition: transform 0.3s ease;
}

.select-display.active i {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 10px 10px;
  max-height: 0;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: max-height 0.3s ease;
}

.dropdown-panel.show {
  max-height: 300px;
} */

/* .search-box {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: white;
}

.search-box input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 35px 8px 12px;
  font-size: 14px;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary-dark);
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
} */

/* .options-list {
  max-height: 200px;
  overflow-y: auto;
}

.option-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.option-item:hover {
  background: #f8f9fa;
}

.option-item.selected {
  background: var(--primary-dark);
  color: white;
}

.option-item.no-results {
  color: #7f8c8d;
  cursor: default;
  text-align: center;
}

.option-item.no-results:hover {
  background: transparent;
}

.btn-search {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-search:active {
  transform: translateY(0);
} */

/* Car Card */

.car-card {
  background: white;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
  z-index: 99;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

.car-details {
  padding: 25px;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* margin-bottom: 20px; */
}

.car-title {
  flex: 1;
}

.car-name a {
  font-size: 26px;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 5px;
}

.car-type {
  color: var(--gray-medium);
  font-size: 14px;
}

.car-price {
  /* font-size: 28px;
  font-weight: bold;
  color: #667eea; */
  font-size: 28px;
  font-weight: bold;
  color: #dc3545;
  margin-bottom: 10px;
  text-align: end;
}

.price-label {
  font-size: 12px;
  color: #a0aec0;
  font-weight: normal;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  padding: 8px 12px;
  background: #f7fafc;
  border-radius: 10px;
}

/* .spec-icon {
  font-size: 24px;
  margin-bottom: 5px;
} */

/* .spec-value {
  font-weight: bold;
  color: #2d3748;
  font-size: 16px;
} */

.spec-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-medium);
}
/* 
.features {
  margin-bottom: 20px;
}

.features-title {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 10px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #edf2f7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #4a5568;
} */

.action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-buttons .btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.action-buttons .btn-detail {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white !important;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.action-buttons .btn-detail:hover {
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.btn-call {
  background: #27ae60;
  color: white;
}

.btn-call:hover {
  background: #229954;
  transform: translateY(-2px);
}

/* Car Listing */

.car__details-head {
  margin-top: 6rem !important;
  background: #000;
  color: white;
  padding: 60px 0 40px;
}

.car-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.car-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.gallery-section {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slider-item {
  min-width: 100%;
  height: 100%;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow-prev {
  left: 20px;
}

.slider-arrow-next {
  right: 20px;
}

.slider-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.slider-indicator.active {
  background: white;
  width: 35px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }
}

.thumbnail-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.thumbnail-images::-webkit-scrollbar {
  height: 8px;
}

.thumbnail-images::-webkit-scrollbar-track {
  /* background: #f1f1f1; */
  background: #000;
  border-radius: 10px;
  display: none !important;
}

.thumbnail-images::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 10px;
  display: none !important;
}

.thumbnail-images::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  display: none !important;
}

.thumbnail {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  height: 100px;
  min-width: 150px;
  flex-shrink: 0;
}

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

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

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.description-section {
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .car-title {
    font-size: 2rem;
  }

  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-container {
    height: 220px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }

  .price-tag {
    font-size: 2rem;
  }

  .color-option {
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .car__details-head {
    padding: 40px 0 30px;
  }

  .info-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .car-title {
    font-size: 1.5rem;
  }

  .car-subtitle {
    font-size: 1rem;
  }

  .thumbnail-images {
    gap: 10px;
  }

  .slider-container {
    height: 250px;
  }

  .spec-value {
    font-size: 1.2rem;
  }

  .spec-icon {
    font-size: 1.5rem;
  }
}

.car-details-table {
  background: #fff;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
}

.detail-value {
  color: #718096;
  font-size: 0.95rem;
}

.button__whatsapp {
  background: #25d366 !important;
  color: white !important;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.button__whatsapp:hover {
  background: #1fb855 !important;
  color: white !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Footer */

.footer {
  background-color: #111111;
}

.footer .nav-link {
  color: #7c7e83 !important;
  transition: all 0.3s ease;
}

.footer .nav-link:hover {
  color: var(--text-light) !important;
}

.footer .nav-link {
  color: #7c7e83 !important;
}

.footer p,
.footer p a {
  color: #7c7e83;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer p a:hover {
  color: #dc2743;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.pinterest {
  background: #e60023;
}

/* Model */

.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-image {
  background: linear-gradient(
      135deg,
      rgba(17, 17, 17, 0.56) 0%,
      rgba(9, 9, 9, 0.79) 100%
    ),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?w=800&h=1000&fit=crop")
      center/cover;
  /* background: rgba(0, 0, 0, 0.2), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=800&h=1000&fit=crop') center/cover; */
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-overlay {
  text-align: center;
  color: white;
  padding: 30px;
  z-index: 1;
}

.image-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  /* margin-bottom: 15px; */
}

.image-overlay p {
  font-size: 16px;
  opacity: 0.95;
}

.modal-dialog {
  max-width: 900px;
}

.button__close {
  background-color: white;
  opacity: 1;
}

.form__input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.button__submit {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  color: var(--text-light) !important;
  background-color: var(--primary-dark) !important;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.button__submit:hover {
  box-shadow: 0 5px 20px rgba(234, 102, 102, 0.4);
}

/* Get A Callback */

.callback-toggle {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: white;
  padding: 15px 10px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  letter-spacing: 2px;
}

.callback-form-container {
  position: fixed;
  right: -350px;
  top: 56%;
  transform: translateY(-50%);
  height: auto;
  width: 350px;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  z-index: 1001;
  border-radius: 12px 0 0 12px;
}

.callback-form-container.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(12, 12, 12, 0.755);
  border: none;
  color: rgb(255, 255, 255);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.form-body {
  padding: 25px;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #b4b4b4 !important;
}

.form-label {
  font-weight: 500 !important;
}

.form-control,
.form-select {
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #ced4da !important;
  transition: all 0.2s ease !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #adadad !important;
  /* box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.3) !important; */
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3) !important;
}

.success-message {
  display: none;
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

@media (max-width: 480px) {
  .callback-form-container {
    width: 100%;
    right: -100%;
  }
}

/* Sell My Car */

.hero__sell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=1600&q=80")
      center/cover;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

.check-icon {
  width: 35px;
  height: 35px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: "✓";
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.form-card {
  /* background: rgba(16, 16, 16, 0.342); */
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px) !important;
  /* background: rgba(30, 30, 30, 0.5); */
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  /* backdrop-filter: blur(10px); */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.form-card h2 {
  color: white;
  font-size: 2rem;
  text-align: center;
  text-decoration-color: white;
  text-underline-offset: 8px;
}

.required {
  color: #ff0000;
  margin-left: 2px;
}

.carForm .form-control {
  padding: 12px !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: 5px !important;
}

.carForm .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3) !important;
  border-color: transparent !important;
}

.carForm .form-control::placeholder {
  color: #999 !important;
}

.submit__btn {
  width: 100%;
  padding: 16px;
  background: #ff0000;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

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

.submit__btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .benefit-item {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .benefit-item {
    font-size: 1.1rem;
  }

  .check-icon {
    width: 30px;
    height: 30px;
  }

  .form-card {
    padding: 30px 25px;
    margin-bottom: 40px;
  }

  .hero {
    background-attachment: scroll;
  }
}

/* How it Works Section Styles */
.how-it-works {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.work-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 150px;
  height: 150px;
  background: #e8e8e8;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-icon {
  width: 90px;
  height: 90px;
}

.work-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.work-description {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .work-card {
    padding: 30px 20px;
  }

  .icon-circle {
    width: 120px;
    height: 120px;
  }

  .work-icon {
    width: 70px;
    height: 70px;
  }
}

/* About Page */

.about__text p {
  font-size: 1.2rem;
  color: #535353;
}

/* Contact page */

.hero-section {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 6rem !important;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.6) 0%,
    rgba(118, 75, 162, 0.6) 100%
  );
  backdrop-filter: blur(2px) brightness(0.9);
  -webkit-backdrop-filter: blur(2px) brightness(0.9);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 0;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
}

.quick-contact {
  /* background: white; */
  border-radius: 15px;
  /* padding: 25px; */
  margin-bottom: 30px;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); */
}

.quick-contact-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background: #f8f9fa;
}

.quick-contact-item a {
  text-decoration: none;
  color: currentColor;
}

/* .quick-contact-item:hover {
  background: #f8f9fa;
} */

.quick-contact-icon {
  width: 50px;
  height: 50px;
  background: #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 15px;
}

.contact-form-section,
.hours-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  height: 100%;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #495057;
}

.time {
  color: #8d8d8dff;
  font-weight: 500;
}
