@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
  --primary-color: #8a79f0;
  --primary-color-dark: #2e2a40;
  --primary-light: #a59af5;
  --text-dark: #221e36;
  --text-light: #767268;
  --extra-light: #f1f2ff;
  --white: #ffffff;
  --max-width: 1200px;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(138, 121, 240, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 3.25rem;
  text-align: center;
}

.section__description {
  color: var(--text-light);
  text-align: center;
  line-height: 1.5rem;
}

/* One Way Services Section */
.one-way-services {
  background-color: var(--extra-light);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.one-way-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10 L90,30 L70,50 L90,70 L70,90 L50,70 L30,90 L10,70 L30,50 L10,30 L30,10 Z" fill="%238a79f0" fill-opacity="0.05"/></svg>') repeat;
  opacity: 0.5;
  z-index: 0;
}

.one-way-services .section__container {
  position: relative;
  z-index: 1;
}

.routes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.route-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(138, 121, 240, 0.1);
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: var(--transition);
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 121, 240, 0.2);
}

.route-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.route-icon {
  width: 60px;
  height: 60px;
  background: rgba(138, 121, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.route-card:hover .route-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.route-details h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.route-details h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.route-info {
  display: flex;
  gap: 1.5rem;
  margin: 1.25rem 0;
  color: var(--text-light);
}

.route-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.route-info i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.route-details p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-bottom: 5px;
}

.route-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.route-btn:hover {
  color: var(--primary-color-dark);
}

.route-btn:hover::after {
  width: 100%;
}

.route-btn i {
  transition: transform 0.3s ease;
}

.route-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .routes-container {
    grid-template-columns: 1fr;
  }
  
  .route-card {
    padding: 1.5rem;
  }
  
  .route-info {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Pricing Notes Section */
.pricing-notes {
  background-color: #f9f9ff;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.pricing-notes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10 L90,30 L70,50 L90,70 L70,90 L50,70 L30,90 L10,70 L30,50 L10,30 L30,10 Z" fill="%238a79f0" fill-opacity="0.03"/></svg>') repeat;
  opacity: 0.5;
  z-index: 0;
}

.pricing-notes .section__container {
  position: relative;
  z-index: 1;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.note-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 121, 240, 0.15);
  text-align: center;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(138, 121, 240, 0.1);
}

.note-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(138, 121, 240, 0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.note-card h3 {
  color: var(--text-dark);
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

.note-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.important-notes {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(138, 121, 240, 0.15);
}

.important-notes h3 {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.important-notes h3 i {
  color: #ff6b6b;
  font-size: 1.5rem;
}

.important-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.important-notes li {
  color: var(--text-light);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.important-notes li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: 0.15rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .notes-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .important-notes {
    padding: 1.5rem;
  }
  
  .important-notes h3 {
    font-size: 1.25rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.route-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.route-card:nth-child(1) { animation-delay: 0.1s; }
.route-card:nth-child(2) { animation-delay: 0.3s; }
.route-card:nth-child(3) { animation-delay: 0.5s; }

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  max-width: 35px;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  white-space: nowrap;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
}

header {
  background: linear-gradient(
    to bottom,
    rgba(138, 121, 240, 0),
    rgba(138, 121, 240, 0.1)
  );
}

.header__container {
  padding-top: 5rem;
  display: grid;
}

.header__image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header__image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 5rem;
  background-color: var(--primary-color);
  opacity: 0.2;
  border-top-left-radius: 2rem;
  z-index: -1;
}

.header__image img,
.header__image img:hover {
  transform: none !important;
  transition: none !important;
}

.header__content {
  padding-block: 2rem 5rem;
  padding-inline: 1rem;
}

.header__content h2 {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 5rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.header__content h1 span {
  display: block;
}

@keyframes headlineSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes headlineSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__form form {
  max-width: 950px;
  margin-inline: auto;
  padding: 1rem;
  display: block;
  background-color: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.header__form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.header__form input {
  width: 88%;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-light);
}

.header__form input::placeholder {
  color: var(--text-light);
}

.header__form .btn {
  padding: 15px 17px;
}

.header__form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.header__form .input__group {
  flex: 1 1 95px;
  display: grid;
  gap: 8px;
}

.input__group--phone input {
  width: 100%;
  min-width: 80px;
}

.input__group--small input {
  max-width: 80px;
}

.input__group--button {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input__group--button .btn {
  width: 100%;
  padding: 5px 20px;
}

@media (max-width: 768px) {
  .header__form-row {
    flex-direction: column;
  }

  .input__group--small input {
    max-width: 100%;
  }

  .input__group--button .btn {
    width: 100%;
  }
}

.about__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.about__grid {
  display: grid;
  gap: 2rem 1rem;
}

.about__card {
  max-width: 300px;
  margin-inline: auto;
  text-align: center;
}

.about__card span {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  padding: 16px 20px;
  border-radius: 1.25rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
}

.about__card:nth-child(1) span {
  color: #8a79f0;
  background-color: #eeebfd;
}

.about__card:nth-child(2) span {
  color: #fba55b;
  background-color: #fff2e8;
}

.about__card:nth-child(3) span {
  color: #ee6a6f;
  background-color: #fde9ea;
}

.about__card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about__card p {
  color: var(--text-light);
  line-height: 1.5rem;
}

.deals {
  background-color: var(--extra-light);
}

.deals__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.deals__tabs {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.deals__tabs .btn {
  font-weight: 600;
  color: var(--primary-color-dark);
  background-color: var(--white);
}

.deals__tabs .btn.active {
  color: var(--white);
  background-color: var(--primary-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.deals__container .tab__content {
  display: none;
  gap: 1rem;
  animation: fadeEffect 1s;
}

.deals__container .tab__content.active {
  display: grid;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.deals__card {
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.deals__card img {
  margin-bottom: 1rem;
}

.deals__rating {
  margin-bottom: 1rem;
  color: goldenrod;
}

.deals__rating span:last-child {
  color: var(--text-light);
}

.deals__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.deals__card__grid {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.deals__card__grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.deals__card__grid div span {
  font-size: 1.2rem;
}

.deals__card__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.deals__card__footer h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.deals__card__footer h3 span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.deals__card__footer a {
  font-weight: 600;
  color: var(--primary-color);
}

.deals__card__footer a:hover {
  color: var(--primary-color-dark);
}

.choose__container {
  display: grid;
}

.choose__content {
  padding-block: 2rem 5rem;
  padding-inline: 1rem;
}

.choose__grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem 1rem;
}

.choose__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.choose__card span {
  padding: 5px 7px;
  font-size: 1.5rem;
  background-color: var(--extra-light);
  color: var(--primary-color);
  border-radius: 0.5rem;
}

.choose__card h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.choose__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5rem;
}

.subscribe__container {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  background-color: var(--extra-light);
}

.subscribe__container::before,
.subscribe__container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3rem;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: -1;
}

.subscribe__container::after {
  top: unset;
  bottom: 0;
}

.subscribe__content {
  padding-block: 2rem 8rem;
  padding-inline: 1rem;
}

.subscribe__content form {
  margin-top: 2rem;
  margin-inline: auto;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 5px;
}

.subscribe__content input {
  width: 100%;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
  padding-inline: 1rem;
  background-color: transparent;
}

.subscribe__content .btn {
  padding-block: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.client__container {
  padding-bottom: 1rem;
}

.client__container .section__description {
  max-width: 600px;
  margin-inline: auto;
}

.swiper {
  padding-block: 4rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.client__card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.client__card:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.client__details {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client__details img {
  max-width: 50px;
  border-radius: 100%;
}

.client__details h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__rating {
  color: goldenrod;
}

.client__card p {
  color: var(--text-light);
  line-height: 1.5rem;
}

  .header__container {
    padding-top: 0;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, 1fr);
  }

  .header__image {
    grid-area: 1/3/2/5;
    height: 100%;
  }

  .header__image img {
    /* padding-bottom: -80rem; */
    position: absolute;
    top:10%;
    left: 0;
    transform: translateY(-50%);
    width: unset;
    height: 70%;
  }

  .header__content {
    padding-block: 2rem 10rem;
    grid-area: 1/2/2/3;
  }

  .header__content h2 {
    margin-inline-start: unset;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__form form {
    padding: 1.5rem;
    transform: translateY(-50%);
  }

  .about__container {
    padding-top: 3rem;
  }

  .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deals__container .tab__content {
    grid-template-columns: repeat(3, 1fr);
  }

  .choose__container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, 1fr);
  }

  .choose__image {
    position: relative;
    isolation: isolate;
    grid-area: 1/1/2/3;
    height: 100%;
  }

  .choose__image img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: unset;
    height: 100%;
  }

  .choose__content {
    padding-block: 5rem;
    grid-area: 1/3/2/4;
  }

  .choose__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .subscribe__container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, 1fr);
  }

  .subscribe__image {
    position: relative;
    isolation: isolate;
    grid-area: 1/3/2/5;
    height: 100%;
  }

  .subscribe__image img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: unset;
    height: 100%;
  }

  .subscribe__content {
    padding-block: 8rem;
    grid-area: 1/2/2/3;
  }

  .subscribe__content :is(.section__header, .section__description) {
    text-align: left;
    /* height: 100%; */
  }

  .subscribe__content form {
    margin-inline-start: unset;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }


@media (width > 1024px) {
  .deals__container .tab__content {
    gap: 1.5rem;
  }

  .deals__card {
    padding: 1.5rem;
  }
}

/* Car Information Section */
.car-info-section {
  background-color: #f0f8ff !important; /* Light blue background for visibility */
  min-height: 500px; /* Ensure minimum height */
  border: 2px dashed red !important; /* Add border for visibility */
  padding: 5rem 1rem;
  background-color: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.car-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10 L90,30 L70,50 L90,70 L70,90 L50,70 L30,90 L10,70 L30,50 L10,30 L30,10 Z" fill="%238a79f0" fill-opacity="0.03"/></svg>') repeat;
  opacity: 0.6;
  z-index: 0;
}

.car-info__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.car-info__content {
  padding: 2rem 0;
}

.car-info__content .section__header {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.car-specs {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.spec-item:hover {
  transform: translateX(10px);
}

.spec-item i {
  font-size: 1.75rem;
  color: var(--primary-color);
  background: rgba(138, 121, 240, 0.1);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.spec-item h3 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.spec-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.car-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.car-features i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.car-info__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.car-info__image:hover {
  transform: perspective(1000px) rotateY(0);
}

.car-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.car-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.car-badge i {
  font-size: 1rem;
  color: #ffeb3b;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .car-info__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .car-info__content .section__header {
    text-align: center;
  }
  
  .spec-item {
    justify-content: center;
    text-align: left;
  }
  
  .car-features {
    justify-content: center;
  }
  
  .car-info__image {
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  /* .header {
    min-height: 140px;
    padding-bottom: 1rem;
  } */

  .header__wrapper {
    padding-bottom: 1.5rem;
    height: 70px;
  }

  .header__form {
    padding: 0 1.25rem 2.25rem;
  }

  .header__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    text-align: center;
  }

  .header__image {
    grid-area: unset;
    order: 1;
  }

  .headline__left,
  .headline__right {
    opacity: 0;
  }

  .headline__left {
    animation: headlineSlideLeft 0.85s ease forwards;
  }

  .headline__right {
    animation: headlineSlideRight 0.85s ease forwards;
    animation-delay: 0.15s;
  }

  .header__form form {
    position: static;
    margin-top: 1rem;
    transform: none;
    top: auto;
    left: auto;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(138, 121, 240, 0.25);
    background: linear-gradient(135deg, rgba(138, 121, 240, 0.12), rgba(255, 255, 255, 0.95));
    box-shadow: 0 18px 35px rgba(34, 30, 54, 0.12);
  }

  .header__form-row {
    gap: 1.25rem;
  }

  .header__form .input__group {
    background: #fff;
    border: 1px solid rgba(34, 30, 54, 0.08);
    border-radius: 0.9rem;
    padding: 0.75rem 0.85rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .header__form .input__group label {
    font-size: 0.85rem;
    color: var(--text-dark);
  }

  .header__form .input__group :is(input, select) {
    width: 100%;
    background: transparent;
    color: var(--text-dark);
  }

  .header__form .input__group--button .btn {
    border-radius: 0.9rem;
    box-shadow: 0 10px 25px rgba(138, 121, 240, 0.35);
  }

  .header__image::before {
    left: 0;
  }

  .header__image img {
    position: static;
    width: min(320px, 90%);
    height: auto;
    transform: none;
    margin-inline: auto;
    padding-bottom: 0;
  }

  .header__content {
            order: 2;
        padding: 0 1rem 2.5rem;
        position: relative;
        left: -17px;
  }

  .header__content h2 {
    margin-inline: auto;
    position: static;
    width: auto;
    margin-top: 1.75rem;
    margin-right: 30px;
  }

  .header__content :is(h1, .section__description) {
    text-align: center;
    /* left: 50px; */
  }
}
