/* For Fonts, in description */
@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;1,100;1,200;1,300;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --accent: #5d50fa;
    --black: #131313;
    --gray: #f9f9f9;
    --blue-gray: #f7f7fb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hover: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}
h3 {
    line-height:   55px; 
}

section {
    min-width: 100%;
    min-height: 100vh;
    color: var(--black);
}

/* Navbar Styles from contact.html */
nav {
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f9fafb;
    padding: 24px 0;
    box-shadow: 0 2px 12px rgba(80, 80, 120, 0.07);
    border-bottom: 1px solid #ececec;
    transition: background 0.2s, box-shadow 0.2s;
}

nav.sticky {
    background-color: white;
    filter: drop-shadow(5px 5px 10px rgba(194, 184, 255, 0.5));
}

.navbar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    flex: initial;
}

.brand h1 {
    font-size: 32px;
    font-weight: bold;
}

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

.brand:hover {
    opacity: 0.8;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.menu a {
    display: inline-block;
    position: relative;
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}
.menu a::after {
    color: var(--accent);
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.1em;
    bottom: 0;
    left: 0;
    background: currentColor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn {
    position: relative;
    width: 180px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.18);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.22);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(93, 80, 250, 0.3);
}

/* Responsive Navbar for Mobile */
@media (max-width: 768px) {
  .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
    padding: 12px 16px;
}
.brand {
  display: flex;
  align-items: center;
    flex: initial;
}
  .hamburger {
    display: flex !important;
    margin-left: 12px;
}
  .menu, .btn {
    display: none !important;
}
}

@media (max-width: 760px) {
  .menu {
    display: none !important;
  }
  .menu.active {
    display: flex !important;
  flex-direction: column;
        position: fixed;
        background: var(--accent);
    min-width: 80vw;
        height: 100vh;
        top: 0;
    right: 0;
    padding: 90px 30px 30px 30px;
    z-index: 1001;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(93,80,250,0.08);
}
.menu a {
    color: white !important;
    font-size: 22px !important;
    margin: 12px 0;
    padding: 0 15px;
    text-align: left;
    width: 100%;
  }
}

/* Hero Page Section */
.hero-page {
    margin-top: 200px;
    display: flex;
    padding: 0px 50px;
    justify-content: space-between;
    overflow: hidden;
}

.hero-headlines {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 652px;
}

.hero-headlines h1 {
    font-size: 38px;
    font-weight: bold;
}

.hero-headlines p {
    font-size: 20px;
}

.dowloas-buttons {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.dowloas-buttons img {
    transition: 0.3s ease-out all;
}

.dowloas-buttons img:hover {
    opacity: 0.8;
    cursor: pointer;
}

.hero-page-img {
    max-width: 100%;
    height: auto;
}

/* Animation d'entrée pour les boutons */
@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn button,
.btn-hero {
    animation: buttonEntrance 0.8s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn button {
        width: 160px;
        height: 45px;
        font-size: 16px;
    }
    
    .btn-hero {
        width: 250px;
        height: 60px;
        font-size: 18px;
    }
}

/* About Section */
.about {
  display: flex;
  flex-direction: column;
  color: white;
  margin-top: 110px;
}

.about-container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-image: url("img/about_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 540px;
}
.about-container h1 {
  font-size: 40px;
  font-weight: bold;
  width: 494px;
  text-align: center;
  margin-top: 67px;
}

.about-subline {
  font-size: 24px;
  width: 822px;
  text-align: center;
  opacity: 0.7;
}

.about-info {
  display: flex;
  position: absolute;
  top: 300px;
  gap: 50px;
  flex-wrap: wrap;
}

.about-info-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: var(--black);
  padding: 0px 35px 47px 17px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
  width: 360px;
  height: 414px;
  transition: all ease-out 0.3s;
}

.about-info-item:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
}

.about-hr {
  width: 100%;
  position: absolute;
  border: 16px solid var(--accent);
  color: var(--accent);
  left: 0px;
}

.about-info-item img {
  width: 178px;
  height: 178px;
  margin-top: 45px;
}

.about-info-item h5 {
  font-size: 32px;
}

.about-info-item p {
  font-size: 16px;
  margin-top: 8px;
}

/* Collection Section */
.collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 200px;
}

.collection h1 {
  font-size: 64px;
  font-weight: bold;
}

.collection-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: center;

}

.collection-car-item {
  width: 320px;
  height: 480px;
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease-out;
}

.collection-car-item:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.25));
}

.collection-car-item img {
  border-radius: 32px;
}
.car-info,
.car-price,
.car-location {
  display: flex;
}

.car-info {
  justify-content: space-between;
  align-items: center;
}

.car-price {
  gap: 4px;
  align-items: center;
}

.car-price h5 {
  font-size: 24px;
}

.car-price h6 {
  font-size: 20px;
  opacity: 0.6;
}
.car-location {
  gap: 8px;
  align-items: center;
  opacity: 0.3;
}

.car-location i {
  font-size: 20px;
}

.car-location h6 {
  font-size: 20px;
}

.car-info-container h2 {
  font-size: 32px;
  margin-bottom: 33px;
  margin-top: 5px;
}

.btn-car {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding-left:40px;
  border-radius: 32px;
  width: 172px;
  height: 50px;
  font-size: 16px;
}
.btn-car i{
    font-size: 16px;
}
.btn-car:hover{
    gap: 8px;
}

.btn-herocar {
  width: 276px;
  height: 60px;
  border-radius: 0px;
  font-size: 24px;
  background-color: var(--black);
  color: white;
  margin-top: 32px;
  transition: all 0.3s ease-out;
}

.btn-herocar i {
  font-size: 24px;
}

.btn-herocar:hover {
  background-color: white;
  color: var(--black);
}

.car-info-container {
  padding: 20px 30px 30px 30px;
}

/* Review Section */
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review h1 {
  font-size: 64px;
  font-weight: bold;
}

.review-container {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.review-item {
  width: 340px;
  height: 335px;
  border-radius: 32px;
  background-color: var(--blue-gray);
  padding: 40px 30px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease-out;
}

.review-item:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}

.review-item p {
  font-size: 24px;
}

.review-people {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.review-people{
    font-size:24px ;
}

/* Footer Section */
footer {
    padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 150px;
}

.callout {
    padding-top: 100px;
    padding-bottom: 70px;
  background-image: url("img/callout-img-desktop.png");
  position: absolute;
  top: -150px;
  margin: 0px 50px;
  height: 300px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.callout h2{
    font-size: 48px;
}
.callout-description{
    font-size: 24px;
    width: 886px;
    text-align: center;

}
.callout-buttons{
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.btn-callout {
  width: 240px;
  height: 60px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background-color: white;
  color: black;
  border-radius: 8px;
}
.btn-callout:hover {
  background-color: var(--black);
  color: white;
  gap: 8px;
}

.btn-callout-black {
  background-color: var(--black);
  color: white;
}

.btn-callout-black:hover {
  background-color: white;
  color: var(--black);
}

.footer-bottom {
    z-index: -1;
  width: 1400px;
  height: 177px;
  padding-top: -50px;
  background-color: var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 100px;
  
}

.footer-brand {
 
  font-size: 40px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all ease-out 0.3s;
}

.footer-brand:hover {
  opacity: 0.6;
}

.socials {
  display: flex;
  gap: 18px;
}

.social-item {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid white;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: all ease-out 0.3s;
  cursor: pointer;
}
.social-item i{
    color: white;
    font-size: 20px;
}
.social-item:hover {
  background-color: var(--accent);
}

/* Collection Page Section */
#collection-page {
  margin-top: 90px;
  margin-bottom: 150px;
}

#collection-car-item-page {
  height: 520px;
}

.collection-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px 50px;
  margin-top: 100px;
}

.collection-category h1 {
  font-size: 48px;
}

.collection-category h2 {
  font-weight: 500px;
}
.collection-category h2 {
  font-weight: 500;
}

#collection-page-img {
  margin: 18px;
}

.btn-collection-page {
  width: 100%;
  border-radius: 12px;
  font-size: 20px;
}

.collection-footer {
  margin-top: 300px;
}
 
/* Contact Page */
.contact {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("img/contact-img.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.contact h1 {
  font-size: 48px;
  font-weight: bold;
}

.contact p {
  font-size: 24px;
  width: 708px; 
  text-align: center ;
  
}
.car-select {
  background-color: #efefef;
  width: 90vw;
  height: 153px;
  border-radius: 32px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

.car-select-item {
  display: flex;
  flex-direction: column;
}

.car-select-item label {
  font-size: 24px;
}

.car-select-input {
  width: 276px;
  height: 45px;
  border-radius: 32px;
  padding: 10px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.contact-form input {
  height: 60px;
  border: none;
}

.contact-form input {
  height: 60px;
  border: none;
  border-bottom: 1px solid var(--black);
  font-size: 32px;
  color: var(--black);
  font-weight: 600;
  background-color: transparent;
  outline: none;
}

.contact-form button {
  width: 260px;
  height: 50px;
  border-radius: 0px;
}

.contact-footer {
  margin-top: 300px;
}

/* Laptop and Tablet */
@media (max-width: 1024px) and (min-width: 0px) {
  nav {
    padding: 30px 20px;
  }

  .brand h1 {
    font-size: 24px;
  }

  .menu {
    gap: 28px;
  }

  .menu a {
    font-size: 20px;
  }

  nav .btn-2 {
    width: 118px;
    height: 35px;
    font-size: 14px;
    font-weight: 500;
  }
  .hero-page {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-headlines {
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
}
/* About */
.about {
  margin-bottom: 700px;
}

.about-subline {
  width: 567px;
}

.about-info {
  gap: 12px;
  justify-content: center;
  top: 350px;
}
.about-info-item {
  width: 358px;
  height: 450px;
}

/* Collection */
.collection-container {
  gap: 12px;
}

.collection-car-item {
  width: 358px;
  height: 450px;
}
.collection-car-item h2 {
  font-size: 24px;
}

/* Review */
.review {
  margin-top: 100px;
}

.review h1 {
  font-size: 48px;
}

.review-container {
  gap: 12px;
}
.review-item {
  width: 358px;
  height: 339px;
}

.review-item p {
  font-size: 20px;
}

.review-people {
  margin-top: 30px;
}

/* Footer */
.index-footer {
    margin-top: 300px;
}

.callout {
    padding: 50px;
    background-color: var(--accent);
    background-image: none;
}

.callout h2 {
    font-size: 40px;
    width: 380px;
    text-align: center;
}

.callout-description {
    width: 100%;
    font-size: 20px;
}
/* Collection Page */
.collection-category {
    padding: 0px 20px;
}

#collection-car-item-page {
    height: 488px;
}

/* Contact Page */
.contact h1 {
    font-size: 40px;
}

.contact p {
    width: 567px;
    text-align: center;
}
.car-select {
    width: 95vw;
    gap: 44px;
}

.car-select-input {
    width: 190px;
    height: 45px;
}
}
/* Phone */
@media (max-width: 767px) {
    /* Navbar */
    nav {
        padding: 20px 30px;
        width: 100%;
    }

    nav .btn {
        display: block;
        color: var(--black);
        font-size: 24px;
    }

    nav .menu {
        position: fixed;
        background: var(--accent);
        flex-direction: column;
        min-width: 80%;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 50px; ;
        transition: 0.5s;
    }
    nav .menu.active {
    right: 0;
}

nav .menu .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px;
    color: white;
}
nav .menu a {
    display: block;
    font-size: 20px;
    margin: 20px;
    padding: 0 15px;
    color: white;
}

nav .btn-2 {
    display: none;
}

/* Hero Page */
.hero-page {
    padding: 0px 20px;
    margin-top: 120px;
}
/* Hero Page */
.hero-page {
    padding: 0px 20px;
    margin-top: 120px;
}

.hero-headlines {
    width: 100%;
}

.hero-headlines h1 {
    font-size: 20px;
}

.hero-headlines p {
    font-size: 12px;
}
.btn-2 {
    width: 168px;
    height: 43px;
    font-size: 16px;
}

.download-buttons {
    margin-top: 12px;
}

.download-buttons img {
    height: 34px;
    width: 99px;
}

.about-container {
    padding: 20px;
    height: 262px;
}
.about-container h1 {
    font-size: 20px;
    width: 100%;
    margin-top: 48px;
}

.about-subline {
    width: 100%;
    font-size: 15px;
}

.about-info {
    top: 240px;
}
.about-info-item {
    width: 280px;
    height: 350px;
    align-items: center;
    padding: 0px 35px 25px 35px;
}

.about-info-item img {
    width: 84px;
    height: 84px;
}

.about-info-item p {
    font-size: 14px;
    text-align: center;
}
/* Collection */
.collection h1 {
    font-size: 24px;
    margin-top: 100px;
}

.collection-container {
    gap: 24px;
}

.collection-car-item {
    width: 280px;
    height: 350px;
}

.car-info-container {
    padding: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.car-info {
    gap: 18px;
}

.car-price h5,
.car-location i,
.collection-car-item h2,
.btn-herocar a {
    font-size: 20px;
}

.car-price h6,
.car-location h6 {
    font-size: 16px;
}
.car-location,
.car-price {
    gap: 4px;
}

.btn-herocar {
    width: 200px;
    height: 50px;
    font-size: 16px;
}

/* Review */
.review {
    padding: 0px 20px;
}
.review h1 {
    font-size: 24px;
    text-align: center;
}

.review-item {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-item p {
    font-size: 14px;
    text-align: center;
}
/* Footer */
.callout {
    padding: 32px;
}

.callout h2 {
    font-size: 24px;
    width: 100%;
}

.callout p {
    font-size: 12px;
}

.callout-buttons {
    flex-direction: column;
}
.footer-bottom {
    flex-direction: column;
    padding: 10px;
    justify-content: end;
    align-items: center;
}

.footer-brand {
    font-size: 24px;
}

/* Collection Page */
.collection-category {
    margin-top: 80px;
}

.collection-category h1 {
    margin-top: 0px;
}
#collection-car-item-page {
    height: 384px;
}

.btn-collection-page {
    width: 100%;
}

/* Contact */
.contact {
    padding: 0px 20px;
}

.contact h1 {
    font-size: 24px;
    text-align: center;
}
.contact p {
    width: 100%;
    font-size: 15px;
}

form {
    width: 100%;
    align-items: center;
}

.car-select {
    width: 100%;
    height: 410px;
    flex-direction: column;
}

.contact-form {
    width: 100%;
}
.contact-form .btn-2 {
    width: 100%;
}

@media (max-width: 770px) {
  .car-info-container {
    min-height: 160px;
  }
}

    .social-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
     height: 48px;
      border-radius: var(--border-radius-md);
      color: white;
      font-size: 18px;
      transition: var(--transition-all);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }

    .social-link:hover::before {
      left: 100%;
    }

    .social-link:hover {
      transform: translateY(-2px) scale(1.05);
    }

    .social-link.facebook { background: linear-gradient(135deg, #1877f2, #0866ff); }
    .social-link.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
    .social-link.instagram { background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcaf45); }
    .social-link.email { background: linear-gradient(135deg, #374151, #1f2937); }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
      }
    

    .social-link:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }



    /* ====== MENU MOBILE ====== */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #f8f9fa 0%, #88d381 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px;
      padding: 40px;
      transform: translateX(-100%);
      transition: transform 0.4s ease;
      z-index: 1000;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .menu-item {
      width: 280px;
      padding: 18px 30px;
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid rgba(121, 116, 255, 0.3);
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      color: #333;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .menu-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(121, 116, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .menu-item:hover:before {
      left: 100%;
    }

    .menu-item:hover {
      background: rgba(121, 116, 255, 0.1);
      border-color: #7974ff;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(121, 116, 255, 0.3);
    }

    .menu-item.active {
      background: linear-gradient(135deg, #7974ff 0%, #6c63ff 100%);
      color: white;
      border-color: #4840e8;
      box-shadow: 0 0 30px rgba(121, 116, 255, 0.5);
    }

    .hamburger {
      position: fixed;
      top: 30px;
      right: 30px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
    }

    .hamburger span {
      width: 100%;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(9px, -9px);
    }
@media (max-width: 767px) {
  nav .btn {
    display: none !important;
  }
}

.navbar .brand img, .navbar img {
  height: 64px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(93, 80, 250, 0.15);
  background: white;
  padding: 4px 10px;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
  vertical-align: middle;
}

.navbar .brand img:hover, .navbar img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(93, 80, 250, 0.25);
}

@media (max-width: 767px) {
  .btn,
  .btn-car {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .mobile-menu {
    display: flex !important;
    flex-direction: column;
  }
}
@media (min-width: 761px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .collection-car-item {
    width: 280px;
    height: 400px;
  }
}
}