@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); #loader-intro {
  position: fixed;
  inset: 0px;
  background: rgb(0, 0, 0);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s;
}

.loader-logo {
  color: rgb(252, 185, 0);
  font-size: 48px;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 30px;
  animation: 1.2s ease-out 0s 1 normal none running fadeInLogo;
}

.spinner {
  width: 60px;
  height: 60px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent rgb(252, 185, 0) rgb(252, 185, 0);
  border-image: initial;
  border-radius: 50%;
  animation: 1s linear 0s infinite normal none running spin;
}

@keyframes fadeInLogo {
  0% {
      opacity: 0;
      transform: scale(0.9);
  }

  100% {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes spin {
  100% {
      transform: rotate(360deg);
  }
}

:root {
  --font-heading: 'Poppins', sans-serif , bold;
  --font-body: 'Raleway', sans-serif;
  --font-button: 'Oswald', sans-serif;
}

* {
  margin: 0px;
  font-family: var(--font-heading);
  font-weight: 700;
}

html, body {
  max-width: 100%;
  
}

html{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity 0.5s;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 500px;
  max-height: 500px;
  width: 90%;
  font-size: 22px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 47px;
  font-size: 35px;
  cursor: pointer;
  color: rgb(51, 51, 51);
  font-weight: bold;
}

.close-button:hover {
  color: rgb(255, 0, 0);
}

.site-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background: transparent;
  padding: 30px 40px;
  z-index: 999;
  box-sizing: border-box;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

.site-header .logo img {
  height: 70px;
  /*margin-left: -65px;*/
}

.site-header nav a {
  margin-left: 20px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-decoration: none;
}

.site-header nav a.active {
  background: rgb(252, 185, 0);
  color: rgb(0, 0, 0);
  padding: 6px 14px;
  border-radius: 20px;
}

.site-header nav a:hover {
  background: rgb(252, 185, 0);
  color: rgb(0, 0, 0);
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.3s;
}

.menu li a:hover, .menu li a.active {
  background: rgb(252, 185, 0);
  color: black;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
      display: block;
      margin-right: -40px;
  }

  .menu {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 80px;
      right: 20px;
      padding: 20px;
      border-radius: 12px;
      z-index: 999;
  }

  .menu.show {
      display: flex;
  }

  .menu li {
      margin: 10px 0px;
  }
}

.hero {
  position: relative;
  background: url("../images/onurAnıtı.png") center center / cover no-repeat;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0px 20px;
  margin-bottom: 460px;
  margin-top: 300px;
}

.hero-overlay h2 {
  font-size: 60px;
  margin-bottom: -25px;
  color: rgb(252, 185, 0);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.hero-overlay h1 {
  font-size: 90px;
  margin-bottom: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-overlay h4 {
  font-size: 28px;
  color: rgb(252, 185, 0);
  margin-top: 25px;
  font-family: var(--font-body);
  font-weight: 500;
}

.car-image {
  position: absolute;
  bottom: -255px;
  left: 53%;
  transform: translateX(-50%);
  width: 1280px;
  z-index: 3;
}

.car-image img {
  width: 80%;
  height: auto;
  display: block;
}

.hero-section {
  background-color: rgb(252, 185, 0);
  height: auto;
  display: flex;
  align-items: center;
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin: 250px auto 200px 170px;
  height: 100%;
  box-sizing: border-box;
}

.hero-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  margin-left: -150px;
}

.hero-content h1 {
  color: white;
  font-size: 56px;
  line-height: 1.2;
  margin-top: 13px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-content .hc {
  color: white;
  font-size: 115px;
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: -25px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-title {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-title .black-text {
  color: rgb(17, 17, 17);
}

.highlight-white {
  color: white;
}

.highlight {
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-size: 40px;
}

.bold {
  color: rgb(17, 17, 17);
  font-weight: 800;
}

.hero-content .desc {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: var(--font-body);
  font-weight: 500;
}

.cta-button {
  font-family: var(--font-button);
  font-weight: 800;
  display: inline-block;
  background: rgb(17, 17, 17);
  color: white;
  font-size: 30px;
  padding: 15px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  width: 200px;
  text-align: center;
}

.extra-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
}

.extra-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.6s, opacity 0.6s;
  opacity: 0;
}

.extra-content.open {
  max-height: 500px;
  opacity: 1;
}

.extra-content.open {
  max-height: 1800px;
}

@media (max-width: 768px) {
  .hero-overlay h2 {
      font-size: 40px;
  }

  .hero-overlay h1 {
      font-size: 60px;
  }

  .hero-overlay h4 {
      font-size: 20px;
  }

  .car-image {
      width: 90%;
  }
}

.hero-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: 60px;
  margin-right: -122px;
}

.form-wrapper {
  width: 600px;
  height: auto;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 25px;
  text-align: center;
  box-sizing: border-box;
  margin-left: 80px;
}

.form-wrapper h3 {
  background: rgb(17, 17, 17);
  color: white;
  padding: 12px 0px;
  font-size: 40px;
  margin: -40px -30px 30px;
  border-radius: 12px 12px 0px 0px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.form-wrapper input {
  width: 100%;
  padding: 16px;
  margin-bottom: 10px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 2px solid rgb(204, 204, 204);
  font-size: 22px;
  box-sizing: border-box;
  height: 80px;
  font-family: var(--font-body);
  font-weight: 500;
}

.form-wrapper button {
  width: 52%;
  background: rgb(17, 17, 17);
  color: rgb(252, 185, 0);
  border: none;
  padding: 10px;
  font-size: 30px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  font-family: var(--font-button);
  font-weight: 700;
}

.notice-box {
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 22px;
  font-family: "Segoe UI", sans-serif;
  color: rgb(17, 17, 17);
  margin-top: 25px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 6px;
  width: 456px;
  text-align: center;
  margin-left: 80px;
}

.notice-box img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.notice-box strong {
  font-family: var(--font-heading);
  font-weight: 700;
}

.vehicle-ads {
  padding: 25px 40px;
  text-align: center;
  background: rgb(255, 255, 255);
  height: auto;
  margin-bottom: 150px;
}

.ads-title {
  margin-bottom: 50px;
}

.ads-title h2 {
  font-size: 60px;
  margin: 0px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.ads-title h3 span {
  font-size: 60px;
  background: rgb(252, 185, 0);
  padding: 1px 10px;
  display: inline-block;
  margin-top: 0px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.ads-title p {
  font-size: 25px;
  color: rgb(85, 85, 85);
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.ads-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 240px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.ad-card {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 6px 16px;
  width: 445px;
  min-height: 680px;
  max-height: 720px;
  position: relative;
  overflow: visible;
  padding-top: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: max-height 0.5s;
}

.ad-image {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 515px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.ad-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ad-content {
  padding: 0px 25px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ad-content h4 {
  font-size: 43px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 20px;
}

.ad-content p {
  font-size: 20px;
  color: rgb(51, 51, 51);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ad-content ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  margin: 5px 0px 0px;
  color: rgb(34, 34, 34);
  font-size: 20px;
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
}

.ad-card li {
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 10px;
}

.ad-card.active ul {
  max-height: 720px;
  opacity: 1;
}

.details-btn {
  font-family: var(--font-button);
  font-weight: 700;
  background: rgb(252, 185, 0);
  color: rgb(0, 0, 0);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 30px;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.details-btn:hover {
  background-color: rgb(224, 168, 0);
}

.reasons-section {
  height: auto;
  background: url("../images/4neden.jpg") center center / cover no-repeat;
  color: rgb(255, 255, 255);
  padding: 80px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.reasons-header span {
  color: rgb(252, 185, 0);
  font-size: 40px;
  margin-bottom: 25px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.reasons-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 70px;
  margin-bottom: 60px;
  margin-top: -7px;
}

.reasons-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: left;
}

.reasons-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 0%;
}

.reason-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 35px;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: rgb(252, 185, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 34px;
}

.icon-circle img {
  width: 75px;
  height: 75px;
}

.reason-text h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  color: rgb(252, 185, 0);
  font-weight: 700;
  margin-bottom: 6px;
}

.reason-text p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  color: rgb(221, 221, 221);
  line-height: 1.4;
}

.btn-yellow.center-btn {
  background: rgb(252, 185, 0);
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  display: inline-block;
  font-size: 27px;
  margin: 40px auto 0px;
  width: 250px;
  height: 40px;
  text-align: center;
  font-family: var(--font-button);
  font-weight: 800;
}

.whatsapp-section {
  background: white;
  padding: 80px 40px;
  box-sizing: border-box;
  height: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h3 {
  font-size: 48px;
  line-height: 1.4;
  margin: 0px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.section-title span {
  background-color: rgb(252, 185, 0);
  padding: 8px 18px;
  border-radius: 10px;
}

.whatsapp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.wp-text {
  flex: 1 1 0%;
  max-width: 48%;
  margin-left: 400px;
}

.wp-text h4 {
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.wp-text p .bas {
  font-size: 36px;
  color: rgb(17, 17, 17);
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.wp-text p {
  font-size: 22px;
  color: rgb(17, 17, 17);
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-weight: 500;
}

.wp-button {
  display: inline-flex;
  align-items: center;
  background: rgb(0, 210, 103);
  color: white;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 33px;
  text-decoration: none;
  gap: 12px;
  margin-top: 10px;
  font-family: var(--font-button);
  font-weight: 700;
}

.wp-button img {
  width: 50px;
  height: 50px;
}

.wp-button:hover {
  background: rgb(0, 178, 85);
}

.wp-image {
  flex: 1 1 0%;
  max-width: 80%;
  text-align: center;
  margin-bottom: -101px;
}

.wp-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 992px) {
  .whatsapp-container {
      flex-direction: column;
      text-align: center;
  }

  .wp-text, .wp-image {
      max-width: 100%;
  }

  .wp-text {
      margin-bottom: 30px;
  }

  .section-title h3 {
      font-size: 36px;
  }

  .wp-text h4 {
      font-size: 30px;
  }

  .wp-text p {
      font-size: 18px;
  }

  .wp-button {
      font-size: 18px;
      padding: 12px 24px;
  }

  .wp-button img {
      width: 22px;
      height: 22px;
  }

  .wp-image img {
      max-width: 80%;
  }
}

@media screen and (max-width: 576px) {
  .section-title h3 {
      font-size: 28px;
  }

  .wp-text h4 {
      font-size: 24px;
  }

  .wp-text p {
      font-size: 16px;
  }

  .wp-button {
      font-size: 16px;
      padding: 10px 20px;
  }

  .wp-image img {
      max-width: 90%;
  }
}

.testimonials-section {
  background: url("../images/musteriYorum.png") center center / cover no-repeat scroll;
  padding: 240px 0px;
  overflow: hidden;
  height: auto;
  color: rgb(255, 255, 255);
  position: relative;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: -60px;
  line-height: 1;
}

.testimonials-title span {
  color: rgb(252, 185, 0);
  font-weight: bold;
  font-size: 43px;
  text-align: center;
  margin-right: 6px;
}

.testimonials-title h2 {
  color: white;
  font-size: 60px;
  font-weight: 900;
  margin-top: 8px;
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 150px auto auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  display: flex;
  gap: 40px;
  flex: 0 0 100%;
  justify-content: center;
  transition: opacity 0.3s;
}

.testimonial-slide {
  opacity: 0.3;
  transform: scale(0.96);
  transition: 0.5s;
}

.testimonial-slide {
  filter: blur(7px);
  opacity: 0.3;
  transform: scale(0.96);
  transition: 0.5s;
}

.testimonial-slide.active {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background: rgb(17, 17, 17);
  color: white;
  padding: 30px;
  border-radius: 30px;
  width: 520px;
  min-height: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 22px;
}

.testimonial-card p {
  font-family: var(--font-body);
  font-weight: 500;
}

.user-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
  font-size: 25px;
  font-family: var(--font-body);
  font-weight: 500;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  color: rgb(252, 185, 0);
  font-size: 30px;
  font-weight: 700;
}

.user-info span {
  font-size: 20px;
  color: rgb(204, 204, 204);
  font-family: var(--font-body);
  font-weight: 500;
}

.testimonial-btn {
  background: rgb(252, 185, 0);
  color: black;
  border: none;
  font-size: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.testimonial-wrapper > .testimonial-btn.prev {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  display: block;
}

.testimonial-wrapper > .testimonial-btn.next {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  display: block;
}

@media screen and (max-width: 768px) {
  .testimonial-controls {
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      z-index: 1000;
      display: flex !important;
  }

  .testimonial-btns {
      width: 60px;
      height: 60px;
      font-size: 32px;
      background: rgb(252, 185, 0);
      color: black;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative !important;
  }

  .testimonial-btns.prev, .testimonial-btns.next {
      position: relative !important;
      transform: none !important;
      inset: unset !important;
  }
}

@media screen and (min-width: 769px) {
  .testimonial-controls {
      display: none;
  }
}

@media (max-width: 1200px) {
  .testimonial-card {
      width: 90%;
  }

  .testimonial-slide {
      flex-direction: column;
      align-items: center;
  }

  .testimonial-btn.prev, .testimonial-btn.next {
      top: unset;
      bottom: -60px;
      transform: none;
      position: relative;
  }

  .testimonial-wrapper {
      flex-direction: column;
      align-items: center;
  }
}

.brand-highlight {
  background-color: rgb(252, 185, 0);
  position: relative;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  height: 100px;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  top: -25px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-image: url("../images/jonFooterUst.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.highlight-content {
  position: relative;
  z-index: 1;
  margin-top: -23px;
  margin-bottom: 80px;
  padding-bottom: 90px;
  font-family: var(--font-body);
  font-weight: 500;
}

.brand-highlight h2 {
  font-size: 50px;
  color: rgb(17, 17, 17);
  line-height: 1.1;
  margin: 50px 235px 0px 130px;
  font-family: var(--font-body);
  font-weight: 700;
}

.site-footer {
  background: url("../images/footerBg.jpg") center center / cover no-repeat scroll;
  padding: 60px 40px;
  color: rgb(255, 255, 255);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.footer-column {
  flex: 1 1 0%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 10px 5px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.footer-column .line {
  width: 100px;
  height: 4px;
  background: rgb(252, 185, 0);
  margin-bottom: 20px;
}

.line {
  width: 2px;
  height: 250px;
  background: rgb(252, 185, 0);
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 17px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-column .contact-item {
  font-size: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-column .contact-item span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: rgb(252, 185, 0);
}

.footer-column .leb {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .hero-flex {
      flex-direction: column;
      align-items: center;
      margin: 150px auto 100px;
      padding: 0px 20px;
  }

  .hero-content, .hero-form, .form-wrapper {
      width: 100%;
      margin: 10px -10px;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .ads-cards {
      flex-direction: column;
      align-items: center;
  }

  .highlight-content h2 {
      font-size: 50px;
      margin: 20px 0px;
      padding: 0px 20px;
  }

  .reasons-wrapper {
      flex-direction: column;
      gap: 60px;
  }

  .notice-box, .form-wrapper {
      width: 90%;
      margin-left: 0px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }
}

@media screen and (max-width: 768px) {
  .hero-overlay h1 {
      font-size: 40px;
  }

  .brand-highlight {
    background-color: rgb(252, 185, 0);
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    height: 400px;
  }

  .brand-highlight::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -225px;
    width: 800px;
    height: 800px;
    background-image: url("../images/jonFooterUst.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
  }

  .line {
    width: 330px;
    height: 2px;
    background: rgb(252, 185, 0);
    margin-bottom: 0px;
    margin-top: -15px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }

  .hero-overlay h2 {
      font-size: 28px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .hero-overlay h4 {
      font-size: 18px;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .car-image {
      width: 100%;
      bottom: -120px;
  }

  .form-wrapper input, .form-wrapper button {
      font-size: 24px;
      height: auto;
      padding: 16px;
  }

  .ads-title h2 {
      font-size: 40px;
  }

  .ad-content h4 {
      font-size: 28px;
  }

  .ad-content p, .ad-content ul {
      font-size: 18px;
  }

  .highlight-content h2 {
      font-size: 23px;
      line-height: 1.3;
  }

  .reason-text h3 {
      font-size: 28px;
  }

  .reason-text p {
      font-size: 20px;
  }

  .footer-column {
      min-width: 100%;
      text-align: center;
      margin: 20px 0px;
  }

  

  .details-btn {
      font-family: var(--font-button);
      font-weight: 700;
      background: rgb(252, 185, 0);
      color: rgb(0, 0, 0);
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 25px;
      margin-top: 10px;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 200px;
      margin-left: 25px;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }

}

@media screen and (max-width: 480px) {
  .cta-button {
      font-size: 20px;
      padding: 15px;
      width: 35%;
      margin-left: 105px;
  }

  .testimonial-card {
      width: 90%;
      padding: 20px;
      border-radius: 40px;
      font-size: 20px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .brand-highlight {
    background-color: rgb(252, 185, 0);
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    height: 400px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .line {
    width: 330px;
    height: 2px;
    background: rgb(252, 185, 0);
    margin-bottom: 0px;
    margin-top: -15px;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }

  .brand-highlight::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -225px;
    width: 800px;
    height: 800px;
    background-image: url("../images/jonFooterUst.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
  }

  .details-btn {
      font-family: var(--font-button);
      font-weight: 700;
      background: rgb(252, 185, 0);
      color: rgb(0, 0, 0);
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 25px;
      margin-top: 10px;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 200px;
      margin-left: 25px;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .user-info {
      flex-direction: column;
      align-items: flex-start;
      font-size: 18px;
  }

  .ads-title h2, .testimonials-title h2 {
      font-size: 36px;
  }

  .ads-title h3 span {
      font-size: 25px;
  }

  .wp-button {
      font-size: 20px;
      padding: 12px;
  }

  .wp-image img {
      max-width: 100%;
      margin-left: 65px;
  }

  .testimonial-btn {
      font-size: 30px;
      width: 50px;
      height: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .ads-cards {
      flex-direction: column;
      align-items: center;
      margin-top: 100px;
  }

  .ad-card {
      width: 90%;
      max-height: unset;
      padding-top: 140px;
  }

  .ad-image {
      width: 320px;
      top: -100px;
  }

  .ad-content h4 {
      font-size: 32px;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .ad-content p, .ad-content ul {
      font-size: 18px;
  }

  .reasons-section {
      padding: 40px 20px;
      height: auto;
  }

  .reasons-header h2 {
      font-size: 50px;
  }

  .reasons-wrapper {
      flex-direction: column;
      gap: 40px;
  }

  .reason-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .icon-circle {
      margin: 0px auto;
  }

  .reason-text h3 {
      font-size: 30px;
  }

  .reason-text p {
      font-size: 20px;
  }

  .wp-text {
      max-width: 100%;
      margin: 0px auto;
  }

  .wp-text h4 {
      font-size: 30px;
  }

  .wp-text p, .wp-text .bas {
      font-size: 20px;
  }

  .wp-image {
      max-width: 100%;
      text-align: center;
  }

  .wp-button {
      font-size: 20px;
      padding: 14px 24px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }
}

@media screen and (max-width: 576px) {
  .ad-card {
      width: 100%;
      padding-top: 120px;
  }

  .ad-image {
      width: 305px;
      top: -55px;
  }

  .ad-content h4 {
      font-size: 24px;
  }

  .line {
    width: 330px;
    height: 2px;
    background: rgb(252, 185, 0);
    margin-bottom: 0px;
    margin-top: -15px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }
  

  .brand-highlight {
    background-color: rgb(252, 185, 0);
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    height: 400px;
  }

  .ad-content p, .ad-content ul {
      font-size: 16px;
  }

  .reasons-header h2 {
      font-size: 40px;
  }

  .details-btn {
      font-family: var(--font-button);
      font-weight: 700;
      background: rgb(252, 185, 0);
      color: rgb(0, 0, 0);
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 25px;
      margin-top: 10px;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 200px;
      margin-left: 25px;
  }

  .brand-highlight::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -225px;
    width: 800px;
    height: 800px;
    background-image: url("../images/jonFooterUst.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .reason-text h3 {
      font-size: 24px;
  }

  .reason-text p {
      font-size: 18px;
  }

  .wp-text h4 {
      font-size: 24px;
  }

  .wp-text p, .wp-text .bas {
      font-size: 18px;
  }

  .wp-button {
      font-size: 18px;
      padding: 12px 20px;
  }

  .wp-button img {
      width: 28px;
      height: 28px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-overlay {
      margin-top: 180px;
      margin-bottom: 300px;
      padding: 0px 15px;
  }

  .hero-overlay h1 {
      font-size: 40px;
  }

  .hero-overlay h2 {
      font-size: 36px;
  }

  .hero-overlay h4 {
      font-size: 24px;
  }

  .car-image img {
      width: 100%;
  }

  .hero-title, h1 {
      font-size: 45px;
  }

  .hero-flex {
      flex-direction: column;
      gap: 40px;
      margin: 100px auto 100px 0px;
      padding: 0px 20px;
  }

  .form-wrapper {
      margin: 0px auto;
      width: 100%;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .notice-box {
      width: 91%;
      margin: 20px auto 0px;
  }
}

@media screen and (max-width: 576px) {
  .hero-overlay {
      margin-top: 100px;
      margin-bottom: 200px;
  }

  .hero-overlay h1 {
      font-size: 42px;
  }

  .hero-overlay .hc {
      font-size: 42px;
  }

  .hero-overlay h2 {
      font-size: 28px;
      margin-top: 60px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }

  .details-btn {
      font-family: var(--font-button);
      font-weight: 700;
      background: rgb(252, 185, 0);
      color: rgb(0, 0, 0);
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 25px;
      margin-top: 10px;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 165px;
      margin-left: 40px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .brand-highlight {
    background-color: rgb(252, 185, 0);
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    height: 80px;
  }

  .brand-highlight::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -90px;
    width: 350px;
    height: 350px;
    background-image: url("../images/jonFooterUst.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
  }

  .hero-overlay h4 {
      font-size: 15px;
  }

  .hero-flex {
      padding: 0px 10px;
  }

  .form-wrapper h3 {
      font-size: 30px;
  }

  .form-wrapper input {
      font-size: 20px;
      height: 80px;
  }

  .form-wrapper button {
      font-size: 22px;
      padding: 12px;
  }

  .notice-box {
      font-size: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .testimonials-title span {
      font-size: 36px;
  }

  .testimonials-title h2 {
      font-size: 50px;
  }

  .testimonial-wrapper {
      margin-top: 100px;
  }

  .testimonial-card {
      font-size: 24px;
      width: 90%;
      padding: 20px;
  }

  .user-info {
      font-size: 18px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .user-info strong {
      font-size: 24px;
  }

  .user-info span {
      font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .testimonials-title span {
      font-size: 28px;
  }

  .testimonials-title h2 {
      font-size: 36px;
  }

  .testimonial-card {
      font-size: 20px;
      padding: 20px;
      border-radius: 40px;
  }

  .site-header .logo img {
    height: 70px;
    margin-left: -65px;
  }

  .testimonial-btn.prev, .testimonial-btn.next {
      display: none;
  }

  .line {
    width: 330px;
    height: 2px;
    background: rgb(252, 185, 0);
    margin-bottom: 0px;
    margin-top: -15px;
  }

  .ads-title p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 500;
  }

  .hero-content h1 {
    color: white;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .testimonial-slide {
      flex-direction: column;
      gap: 20px;
  }
}

@media screen and (min-width: 1600px) {
  .container, .hero-flex, .form-wrapper, .footer-top {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-flex {
      gap: 0px;
      margin-left: 300px;
      margin-right: auto;
      padding: 0px 40px;
  }

  .form-wrapper {
      margin-left: 0px;
      width: 81%;
      /*height: 584px;*/
  }

  .notice-box {
      margin-left: 0px;
  }
}

@media screen and (min-width: 1920px) {
  .container, .hero-flex, .form-wrapper, .footer-top {
      max-width: 1920px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-overlay h1 {
      font-size: 100px;
  }

  .hero-overlay h2 {
      font-size: 70px;
  }

  .hero-content h1 {
      font-size: 70px;
  }

  .cta-button {
      font-size: 28px;
      padding: 30px 40px;
  }
}

@media screen and (min-width: 2560px) {
  .container, .hero-flex, .form-wrapper, .footer-top {
      max-width: 2000px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-overlay {
      margin-top: 400px;
      margin-bottom: 500px;
  }

  .hero-content .desc {
      font-size: 40px;
  }

  .form-wrapper input, .form-wrapper button {
      font-size: 27px;
      height: 120px;
  }

  .ad-content h4 {
      font-size: 48px;
  }

  .reason-text h3 {
      font-size: 48px;
  }

  .reason-text p {
      font-size: 36px;
  }
}
