:root {
  --copart-blue: #0B1E3F;
  --copart-gold: #FFB838;
  --text-on-dark: #ffffff;
  --text-on-light: #1f2937;
  --page-white: #ffffff;
  --gray-soft: #E5E7EB;
}

.copart-links {
  flex-direction: row-reverse;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Tajawal", "Poppins", system-ui;
  color: var(--text-on-light);
  line-height: 1.45;
  background: #fff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

section {
  padding: 80px 0;
}

.section-white {
  background: var(--page-white);
}

.section-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--copart-blue);
}

.section-subtitle {
  margin: 0 0 24px;
  color: #475569;
  font-size: 16px;
  max-width: 860px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-link {
  color: var(--copart-gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroller::-webkit-scrollbar {
  height: 6px;
}

.scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.profile-section {
  background: var(--page-white);
}

.rtl-block {
  direction: rtl;
  text-align: right;
}

.rtl-block .card {
  text-align: right;
}

.profile-summary {
  font-size: 16px;
  color: #1f2937;
  line-height: 1.8;
  max-width: 960px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.profile-card {
  min-height: auto;
}

.profile-card-wide {
  grid-column: span 2;
}

.profile-service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.profile-service-groups > div {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0B1E3F;
  font-size: 16px;
  margin-bottom: 8px;
}

.profile-list {
  list-style: disc;
  padding-inline-start: 20px;
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

.rtl-block .profile-list {
  padding-inline-start: 0;
  padding-inline-end: 20px;
}

.profile-list li + li {
  margin-top: 6px;
}

.empty-card {
  text-align: center;
  font-weight: 600;
  color: #475569;
}

.partners-section {
  background: #f8fafc;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
  align-items: stretch;
}

.partner-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.partner-card img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: filter 0.25s ease;
}

.partner-card:hover img {
  filter: grayscale(0);
}

.partner-card span {
  font-weight: 700;
  color: #0B1E3F;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

main#main {
  padding-top: 160px !important;
}

#animated-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, var(--copart-blue) 0%, #123055 30%, rgba(255, 255, 255, 0) 70%, #fff 100%);
  background-size: 100% 200%;
}

#bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.03));
  mix-blend-mode: overlay;
}

.btn-cta {
  background: linear-gradient(90deg, var(--copart-gold), #f2a91f);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

#hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 64px 0 36px;
  overflow: visible;
  background: url("../images/map.png") no-repeat center center;
  background-size: cover;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

#hero .container,
#hero .left,
#hero .right {
  position: relative;
  z-index: 2;
}

.hero-logo {
  height: auto;
  max-width: 220px;
  margin-bottom: 16px;
}

.hero-badge {
  background: var(--copart-gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left,
.hero-right {
  flex: 1;
  min-width: 280px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.hero-secondary {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: blur(2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-stat {
  flex: 1 1 120px;
  text-align: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
}

.hero-stat .num-inline {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.copart-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn {
  background: var(--copart-gold);
  color: #000 !important;
  font-weight: 700;
  border: none;
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(255, 184, 56, 0.25);
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
}

.primary-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lang-btn {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: 0.25s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

#hero h1 {
  font-size: clamp(26px, 4.5vw, 44px);
  color: white;
  margin: 0 0 14px;
  line-height: 1.3;
}

#hero p {
  color: white;
  opacity: 0.92;
  max-width: 650px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.copart-nav {
  width: 100%;
  background: var(--copart-blue);
  padding: 22px 0;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
}

.copart-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copart-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.copart-logo {
  height: 70px;
  object-fit: contain;
  width: auto;
}

.copart-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.copart-links li a {
  color: #E5E7EB;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.copart-links li a:hover {
  color: white;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.copart-login {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-badge {
  background: #E5E7EB;
  color: #0B1E3F;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
}

.login-btn {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: 0.25s;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.copart-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.copart-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.copart-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px 26px;
  background: rgba(4, 12, 32, 0.95);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.5);
  position: absolute;
  right: 18px;
  left: 18px;
  top: calc(100% - 10px);
  max-height: calc(100vh - 140px);
  overflow: auto;
}

.copart-mobile-menu.is-open {
  display: flex;
}

.copart-mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.copart-mobile-menu .nav-btn,
.copart-mobile-menu .primary-btn,
.copart-mobile-menu .lang-btn {
  width: 100%;
  justify-content: center;
}

.hero-map {
  width: 100%;
  max-width: 500px;
  min-height: 320px;
  border-radius: 28px;
  background: url("../images/map.png") no-repeat center center;
  background-size: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 20px;
  color: #0B1E3F;
}

.card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
}

.card .emoji {
  font-size: 42px;
  margin-bottom: 12px;
}

.project-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.project-title {
  font-weight: 700;
  font-size: 18px;
  color: #0B1E3F;
  margin-bottom: 6px;
}

.project-text {
  color: #4b5563;
}

.stat-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.stat-card .num {
  font-size: 40px;
  font-weight: 900;
  color: #0B1E3F;
}

.stat-label {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
}

.car-card {
  min-width: 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.car-card .img {
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
}

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

.car-card .no-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-weight: 600;
}

.car-title {
  margin-top: 12px;
  font-weight: 700;
  color: #0B1E3F;
}

.car-vin {
  font-size: 13px;
  color: #6b7280;
}

.car-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-price {
  font-weight: 800;
  color: #0B1E3F;
}

.car-btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  font-size: 13px;
  font-weight: 600;
  color: #0B1E3F;
  text-decoration: none;
  transition: 0.25s ease;
}

.car-btn:hover {
  background: #0B1E3F;
  color: white;
}

#contact .form,
#contact .card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

#contact .form:hover,
#contact .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.copart-nav-inner {
  direction: ltr !important;
}

.copart-left {
  direction: rtl !important;
}

.copart-actions {
  direction: rtl !important;
}

.copart-links {
  direction: rtl !important;
}

#contact .form input,
#contact .form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
  font-family: "Tajawal";
  font-size: 14px;
  background: #f8fafc;
  transition: 0.25s;
}

#contact .form input:focus,
#contact .form textarea:focus {
  border-color: #0B1E3F;
  box-shadow: 0 0 0 3px rgba(11, 30, 63, 0.12);
  background: white;
  outline: none;
}

#contact .contact-title {
  margin-bottom: 10px;
  color: #0B1E3F;
  font-weight: 800;
  font-size: 20px;
}

#contact .contact-text {
  color: #4b5563;
  margin-bottom: 6px;
  font-size: 15px;
}

#contact .grid-2 {
  gap: 26px;
}

#contact .btn-cta {
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

.footer {
  padding: 24px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  color: #475569;
}

.footer-extra {
  color: #94a3b8;
}

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 140px;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.accent-gold {
  color: var(--copart-gold);
}

@media (max-width: 1200px) {
  .copart-nav-inner {
    padding: 0 22px;
  }
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-card-wide {
    grid-column: span 1;
  }

  .hero-map {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .copart-nav {
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    padding: 16px 0 24px;
  }

  .copart-nav-inner {
    padding: 0 18px;
    direction: ltr !important;
  }

  .copart-left {
    width: 100%;
    justify-content: space-between;
    justify-content: flex-start !important;
  }

  .copart-logo {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .copart-links,
  .copart-actions {
    display: none;
  }

  .copart-menu-toggle {
    display: flex;
    margin-inline-start: auto;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .copart-mobile-menu {
    right: 16px;
    left: 16px;
  }

  main#main {
    padding-top: 150px !important;
  }

  #contact .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  #hero {
    padding: 110px 0 70px;
  }

  .hero-wrapper {
    gap: 24px;
  }

  .hero-left,
  .hero-right {
    min-width: 100%;
  }

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

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

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

  .hero-right {
    order: -1;
  }

  .hero-logo {
    margin: 0 auto 16px;
  }

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

  .profile-service-groups {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-map {
    min-height: 260px;
  }

  .hero-stat {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .copart-nav {
    padding: 12px 0 !important;
    border-bottom-left-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
  }

  .copart-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding: 0 18px !important;
    gap: 8px !important;
  }

  .copart-left {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    flex: 1;
  }

  .copart-logo {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .copart-menu-toggle {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta,
  .hero-secondary {
    width: 100%;
  }

  .copart-mobile-menu {
    padding: 18px 18px 24px;
  }

  .car-card {
    min-width: 230px;
  }

  main#main {
    padding-top: 140px !important;
  }
}

@media (max-width: 414px) {
  #hero {
    padding: 100px 0 64px;
  }

  .hero-map {
    min-height: 220px;
  }

  .copart-nav {
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
  }
}

@media (max-width: 360px) {
  .copart-mobile-menu {
    left: 12px;
    right: 12px;
  }

  .hero-logo {
    max-width: 170px;
  }

  .hero-stat {
    flex: 1 1 100%;
  }
}

/* Cars Grid Layout */
.cars-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .cars-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cars-scroller {
    grid-template-columns: 1fr;
  }
}

/* Card */
.car-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.car-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Image */
.car-image {
  height: 180px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.no-img {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Body */
.car-body {
  padding: 14px 16px 6px;
}

.car-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  max-height: 2.6em;
  overflow: hidden;
}

.car-vin {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Footer */
.car-footer {
  margin-top: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
}

.car-price {
  font-weight: 700;
  color: #0f172a;
}

.car-btn {
  background: var(--primary, #2563eb);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-decoration: none;
}

.car-btn:hover {
  opacity: 0.9;
}
