@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
  }

  h1 {
    text-transform: uppercase;
  }

.span1 {
  font-weight: 400;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__images {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.hero__image--active {
  opacity: 1;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 50px 60px;
  max-width: 1400px;
}

.hero__title {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.hero__btn {
  padding: 8px 38px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__btn:nth-child(1) {
  transition-delay: 0s;
}

.hero__btn:nth-child(1).is-visible {
  transition-delay: 0.3s;
}

.hero__btn:nth-child(2) {
  transition-delay: 0s;
}

.hero__btn:nth-child(2).is-visible {
  transition-delay: 0.4s;
}

.hero__btn--light {
  background-color: #ffffff;
  color: #000000;
}

.hero__btn--light:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero__btn--dark {
  background-color: #000000;
  color: #ffffff;
  font-weight: 400;
}

.hero__btn--dark:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__btn--dark a {
  text-decoration: none;
  color: #ffffff;
}

.hero__btn--light a {
  text-decoration: none;
  color: #000000;
}

/* Tablet Responsive Styles */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero__content {
    padding: 80px 35px 50px;
  }

  .hero__title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .hero__actions {
    gap: 12px;
    margin-bottom: 15px;
  }

  .hero__btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 767px) {
  .hero__content {
    padding: 60px 25px 40px;
  }

  .hero__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-top: 10px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
    margin-bottom: 10px;
  }

  .hero__btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .hero__content {
    padding: 50px 20px 30px;
  }

  .hero__title {
    font-size: clamp(30px, 5vw, 28px);
    margin-top: 100px;
  }

  .hero__actions {
    max-width: 100%;
    gap: 10px;
  }

  .hero__btn {
    padding: 13px 20px;
    font-size: 12px;
  }
}

/* Explore S7 Section */
.explore-s7 {
  width: 100%;
  background-color: #000000;
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.explore-s7__container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.explore-s7__title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.explore-s7__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.explore-s7__description {
  font-size: clamp(16px, 1.8vw, 16px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.explore-s7__description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet Responsive Styles for Explore S7 */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .explore-s7 {
    padding: 80px 35px;
  }

  .explore-s7__container {
    gap: 35px;
  }

  .explore-s7__title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .explore-s7__description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
  }
}

/* Mobile Responsive Styles for Explore S7 */
@media screen and (max-width: 767px) {
  .explore-s7 {
    padding: 60px 25px;
  }

  .explore-s7__container {
    gap: 30px;
  }

  .explore-s7__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .explore-s7__description {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* Small Mobile Devices for Explore S7 */
@media screen and (max-width: 480px) {
  .explore-s7 {
    padding: 50px 20px;
  }

  .explore-s7__container {
    gap: 25px;
  }

  .explore-s7__title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .explore-s7__description {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Vehicle Highlights Section */
.vehicle-highlights {
  width: 100%;
  background-color: #000000;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vehicle-highlights__container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.vehicle-highlights__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vehicle-highlights__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vehicle-highlights__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-highlights__nav {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.vehicle-highlights__nav.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-highlights__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.vehicle-highlights__nav-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: scale(1.1);
}

.vehicle-highlights__nav-btn:active {
  transform: scale(0.95);
}

.vehicle-highlights__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vehicle-highlights__slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.vehicle-highlights__slide--active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.vehicle-highlights__panel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  flex: 1;
}

.vehicle-highlights__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.vehicle-highlights__panel:hover .vehicle-highlights__image {
  transform: scale(1.05);
}

.vehicle-highlights__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vehicle-highlights__panel:hover .vehicle-highlights__overlay {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-highlights__feature {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vehicle-highlights__feature:last-child {
  margin-bottom: 0;
}

.vehicle-highlights__feature-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.vehicle-highlights__feature-desc p {
  margin: 0 0 8px 0;
}

.vehicle-highlights__feature-desc p:last-child {
  margin-bottom: 0;
}

.vehicle-highlights__feature-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.vehicle-highlights__adas-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vehicle-highlights__panel--right:hover .vehicle-highlights__adas-overlay {
  opacity: 1;
}

.vehicle-highlights__sensor-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 3px solid rgba(0, 150, 255, 0.6);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.2) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.vehicle-highlights__sensor-rectangle {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 120px;
  height: 80px;
  border: 2px solid rgba(255, 0, 0, 0.6);
  background: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  animation: pulse 2s ease-in-out infinite 0.5s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Tablet Responsive Styles for Vehicle Highlights */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .vehicle-highlights {
    padding: 20px 35px;
  }

  .vehicle-highlights__container {
    gap: 40px;
  }

  .vehicle-highlights__title {
    font-size: clamp(30px, 3vw, 40px);
  }

  .vehicle-highlights__nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .vehicle-highlights__slide {
    gap: 25px;
  }

  .vehicle-highlights__panel {
    height: 400px;
  }

  .vehicle-highlights__feature {
    font-size: 16px;
  }

  .vehicle-highlights__feature-desc {
    font-size: 12px;
    margin-top: 6px;
  }

  .vehicle-highlights__feature-desc p {
    margin-bottom: 6px;
  }

  .vehicle-highlights__sensor-circle {
    width: 150px;
    height: 150px;
  }

  .vehicle-highlights__sensor-rectangle {
    width: 100px;
    height: 60px;
  }
}

/* Mobile Responsive Styles for Vehicle Highlights */
@media screen and (max-width: 767px) {
  .vehicle-highlights {
    padding: 60px 25px;
  }

  .vehicle-highlights__container {
    gap: 30px;
  }

  .vehicle-highlights__header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .vehicle-highlights__title {
    font-size: clamp(22px, 5vw, 32px);
    text-align: center;
  }

  .vehicle-highlights__nav {
    align-self: center;
  }

  .vehicle-highlights__nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .vehicle-highlights__slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vehicle-highlights__panel {
    height: 350px;
  }

  .vehicle-highlights__overlay {
    padding: 20px;
  }

  .vehicle-highlights__feature {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .vehicle-highlights__feature-desc {
    font-size: 11px;
    margin-top: 6px;
  }

  .vehicle-highlights__feature-desc p {
    margin-bottom: 6px;
  }
}

/* Small Mobile Devices for Vehicle Highlights */
@media screen and (max-width: 480px) {
  .vehicle-highlights {
    padding: 10px 20px;
  }

  .vehicle-highlights__container {
    gap: 25px;
  }

  .vehicle-highlights__header {
    gap: 15px;
    align-items: center;
  }

  .vehicle-highlights__title {
    font-size: clamp(24px, 4.5vw, 28px);
    text-align: center;
  }

  .vehicle-highlights__nav {
    align-self: center;
  }

  .vehicle-highlights__nav-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .vehicle-highlights__slide {
    gap: 15px;
  }

  .vehicle-highlights__panel {
    height: 300px;
  }

  .vehicle-highlights__overlay {
    padding: 18px;
  }

  .vehicle-highlights__feature {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .vehicle-highlights__feature-desc {
    font-size: 10px;
    margin-top: 4px;
  }

  .vehicle-highlights__feature-desc p {
    margin-bottom: 4px;
  }
}

/* Performance Section */
.performance-section {
  width: 100%;
  background-color: #000000;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.performance-section__container {
  max-width: 1600px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.performance-section__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.performance-section__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  margin-right: 100px;
  letter-spacing: 1px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.performance-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.performance-section__description {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.performance-section__description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.performance-section__image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.performance-section__image-wrapper.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.performance-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet Responsive Styles for Performance Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .performance-section {
    padding: 40px 35px;
  }

  .performance-section__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .performance-section__content {
    order: 0;
    gap: 25px;
    text-align: center;
    align-items: center;
  }

  .performance-section__title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .performance-section__description {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 100%;
  }

  .performance-section__image-wrapper {
    order: 1;
    transform: translateY(40px);
  }

  .performance-section__image-wrapper.is-visible {
    transform: translateY(0);
  }
}

/* Mobile Responsive Styles for Performance Section */
@media screen and (max-width: 767px) {
  .performance-section {
    padding: 60px 25px;
  }

  .performance-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .performance-section__content {
    order: 0;
    gap: 20px;
    text-align: left;
    align-items: center;
  }

  .performance-section__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .performance-section__description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

  .performance-section__image-wrapper {
    order: 1;
    transform: translateY(40px);
  }

  .performance-section__image-wrapper.is-visible {
    transform: translateY(0);
  }
}

/* Small Mobile Devices for Performance Section */
@media screen and (max-width: 480px) {
  .performance-section {
    padding: 20px 20px;
  }

  .performance-section__container {
    gap: 35px;
  }

  .performance-section__content {
    gap: 18px;
  }

  .performance-section__title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .performance-section__description {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Response Control Section */
.response-control-section {
  width: 100%;
  background-color: #000000;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.response-control-section__container {
  max-width: 1600px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.response-control-section__image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.response-control-section__image-wrapper.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.response-control-section__image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.response-control-section__content {
  background-color: #000000;
  padding: 60px 50px;
  margin-left: -80px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.response-control-section__content.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.response-control-section__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.response-control-section__title-line {
  display: block;
}

.response-control-section__description {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  max-width: 550px;
}

/* Tablet Responsive Styles for Response Control Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .response-control-section {
    padding: 80px 35px;
  }

  .response-control-section__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .response-control-section__image-wrapper {
    order: 0;
    justify-content: center;
    transform: translateY(40px);
    margin-bottom: -40px;
  }

  .response-control-section__image-wrapper.is-visible {
    transform: translateY(0);
  }

  .response-control-section__image {
    max-height: 500px;
    object-position: center;
  }

  .response-control-section__content {
    order: 1;
    margin-left: 0;
    padding: 50px 40px;
    align-items: center;
    text-align: center;
    transform: translateY(40px);
  }

  .response-control-section__content.is-visible {
    transform: translateY(0);
  }

  .response-control-section__title {
    font-size: clamp(26px, 4vw, 38px);
    text-align: center;
  }

  .response-control-section__description {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 100%;
    text-align: left;
  }
}

/* Mobile Responsive Styles for Response Control Section */
@media screen and (max-width: 767px) {
  .response-control-section {
    padding: 60px 25px;
  }

  .response-control-section__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .response-control-section__image-wrapper {
    order: 0;
    justify-content: center;
    transform: translateY(40px);
    margin-bottom: -30px;
  }

  .response-control-section__image-wrapper.is-visible {
    transform: translateY(0);
  }

  .response-control-section__image {
    max-height: 400px;
    object-position: center;
  }

  .response-control-section__content {
    order: 1;
    margin-left: 0;
    padding: 40px 0px;
    gap: 25px;
    align-items: left;
    text-align: left;
    transform: translateY(40px);
  }

  .response-control-section__content.is-visible {
    transform: translateY(0);
  }

  .response-control-section__title {
    font-size: clamp(22px, 6vw, 32px);
    text-align: left;
    gap: 6px;
  }

  .response-control-section__description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    text-align: left;
  }
}

/* Small Mobile Devices for Response Control Section */
@media screen and (max-width: 480px) {
  .response-control-section {
    padding: 50px 20px;
  }

  .response-control-section__image-wrapper {
    margin-bottom: -20px;
  }

  .response-control-section__image {
    max-height: 350px;
  }

  .response-control-section__content {
    padding: 35px 0px;
    gap: 20px;
  }

  .response-control-section__title {
    font-size: clamp(20px, 5vw, 28px);
    gap: 5px;
  }

  .response-control-section__description {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Exterior Section */
.exterior-section {
  width: 100%;
  background-color: #000000;
  display: flex;
  padding: 100px 0px 0px;
  justify-content: center;
  align-items: center;
}

.exterior-section__container {
  width: 100%;
  display: flex;
  background-color: #131313;
  justify-content: center;
  align-items: center;
}

.exterior-section__content {
  padding: 50px 50px;
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.exterior-section__label {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.exterior-section__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.exterior-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
}

.exterior-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.exterior-section__description {
  font-size: clamp(16px, 1.8vw, 16px);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
  margin: 0;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.exterior-section__description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.exterior-section__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  padding-top: 30px;
}

.exterior-section__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  contain: layout style paint;
  pointer-events: none;
}

.exterior-section__slide--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  position: relative;
  pointer-events: auto;
  will-change: auto;
}

.exterior-section__image-wrapper {
  width: 100%;
  max-width: 1300px;
  height: 600px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  contain: layout style paint;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.exterior-section.is-visible .exterior-section__image-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.exterior-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.exterior-section__image-wrapper:hover .exterior-section__image {
  transform: scale(1.05);
}

.exterior-section__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.exterior-section__carousel .exterior-section__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.exterior-section__carousel .exterior-section__nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.exterior-section__carousel .exterior-section__nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.exterior-section__carousel .exterior-section__nav-btn--prev {
  left: 20px;
}

.exterior-section__carousel .exterior-section__nav-btn--next {
  right: 20px;
}

.exterior-section__pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
  z-index: 5;
}

.exterior-section__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.exterior-section__dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.exterior-section__dot--active {
  background-color: #ffffff;
  width: 14px;
  height: 14px;
}

/* Tablet Responsive Styles for Exterior Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .exterior-section {
    padding: 80px 0px 0px;
  }
  .exterior-section__container {
    border-radius: 0px;
  }
  .exterior-section__content {
    padding: 60px 40px;
    gap: 15px;
  }

  .exterior-section__title {
    font-size: clamp(30px, 3.5vw, 40px);
  }

  .exterior-section__description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
  }

  .exterior-section__image-wrapper {
    height: 450px;
    max-width: 100%;
  }

  .exterior-section__carousel .exterior-section__nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--prev {
    left: 15px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--next {
    right: 15px;
  }
}

/* Mobile Responsive Styles for Exterior Section */
@media screen and (max-width: 767px) {
  .exterior-section {
    padding: 60px 25px;
  }

  .exterior-section__content {
    padding: 50px 30px;
    gap: 30px;
    border-radius: 15px;
  }

  .exterior-section__label {
    font-size: 14px;
  }

  .exterior-section__title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .exterior-section__description {
    font-size: 16px;
    line-height: 1.7;
  }

  .exterior-section__image-wrapper {
    height: 350px;
    max-width: 100%;
  }

  .exterior-section__carousel .exterior-section__nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--prev {
    left: 10px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--next {
    right: 10px;
  }
}

/* Small Mobile Devices for Exterior Section */
@media screen and (max-width: 480px) {
  .exterior-section {
    padding: 50px 0px 0px;
  }
  .exterior-section__container {
    border-radius: 0px 0px 0px;
  }
  .exterior-section__content {
    padding: 40px 25px;
    gap: 15px;
    border-radius: 12px;
  }

  .exterior-section__label {
    font-size: 13px;
  }

  .exterior-section__title {
    font-size: clamp(24px, 4.5vw, 28px);
  }

  .exterior-section__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .exterior-section__carousel {
    padding-top: 10px;
  }

  .exterior-section__image-wrapper {
    height: 300px;
  }

  .exterior-section__carousel .exterior-section__nav-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--prev {
    left: 8px;
  }

  .exterior-section__carousel .exterior-section__nav-btn--next {
    right: 8px;
  }

  .exterior-section__dot {
    width: 10px;
    height: 10px;
  }

  .exterior-section__dot--active {
    width: 12px;
    height: 12px;
  }
}

/* Interior Section */
.interior-section {
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interior-section__container {
  width: 100%;
  display: flex;
  background-color: #131313;
  justify-content: center;
  align-items: center;
}

.interior-section__content {
  padding: 50px 50px;
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.interior-section__label {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.interior-section__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.interior-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
}

.interior-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.interior-section__description {
  font-size: clamp(16px, 1.8vw, 16px);
  font-weight: 400;
    color: #ffffff;
  text-align: center;
  line-height: 1.8;
  margin: 0;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.interior-section__description.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.interior-section__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  padding-top: 30px;
}

.interior-section__slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  contain: layout style paint;
  pointer-events: none;
}

.interior-section__slide--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  position: relative;
  pointer-events: auto;
  will-change: auto;
}

.interior-section__image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  contain: layout style paint;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.interior-section.is-visible .interior-section__image-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.interior-section.is-visible .interior-section__image-wrapper:nth-child(1) {
  transition-delay: 0.45s;
}

.interior-section.is-visible .interior-section__image-wrapper:nth-child(2) {
  transition-delay: 0.6s;
}

.interior-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.interior-section__image-wrapper:hover .interior-section__image {
  transform: scale(1.05);
}

.interior-section__nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.interior-section__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.interior-section__nav-btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.1);
}

.interior-section__nav-btn:active {
  transform: scale(0.95);
}

/* Tablet Responsive Styles for Interior Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .interior-section {
    padding: 0px 0px 0px;
  }
  .interior-section__container {
    border-radius: 0px;
  }
  .interior-section__content {
    padding: 60px 40px;
    gap: 15px;
  }

  .interior-section__title {
    font-size: clamp(30px, 3.5vw, 40px);
  }

  .interior-section__description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
  }

  .interior-section__images {
    gap: 25px;
  }

  .interior-section__image-wrapper {
    height: 350px;
  }

  .interior-section__nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* Mobile Responsive Styles for Interior Section */
@media screen and (max-width: 767px) {
  .interior-section {
    padding: 60px 25px;
  }

  .interior-section__content {
    padding: 50px 30px;
    gap: 30px;
    border-radius: 15px;
  }

  .interior-section__label {
    font-size: 14px;
  }

  .interior-section__title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .interior-section__description {
    font-size: 16px;
    line-height: 1.7;
  }

  .interior-section__slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .interior-section__image-wrapper {
    height: 300px;
  }

  .interior-section__nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Small Mobile Devices for Interior Section */
@media screen and (max-width: 480px) {
  .interior-section {
    padding: 0px 0px 0px;
  }
  .interior-section__container {
    border-radius: 0px 0px 0px 0px;
  }
  .interior-section__content {
    padding: 40px 25px;
    gap: 15px;
    border-radius: 12px;
  }

  .interior-section__label {
    font-size: 13px;
  }

  .interior-section__title {
    font-size: clamp(24px, 4.5vw, 28px);
  }

  .interior-section__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .interior-section__images {
    gap: 15px;
  }
.interior-section__carousel {
  padding-top: 10px;
}
  .interior-section__image-wrapper {
    height: 250px;
  }

  .interior-section__nav-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

/* Specs Section */
.specs-section {
  width: 100%;
  background-color: #131313;
  padding: 50px 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specs-section__container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.specs-section__title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.specs-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.specs-section__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specs-section__specs {
  display: flex;
  justify-content: center;
  width: 100%;
  order: 2;
}

.specs-section__spec-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.specs-section.is-visible .specs-section__spec-item {
  opacity: 1;
  transform: translateY(0);
}

.specs-section.is-visible .specs-section__spec-item:nth-child(1) {
  transition-delay: 0.15s;
}

.specs-section.is-visible .specs-section__spec-item:nth-child(2) {
  transition-delay: 0.3s;
}

.specs-section.is-visible .specs-section__spec-item:nth-child(3) {
  transition-delay: 0.45s;
}

.specs-section.is-visible .specs-section__spec-item:nth-child(4) {
  transition-delay: 0.6s;
}

.specs-section__spec-value {
  font-size: clamp(36px, 4vw, 35px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.specs-section__spec-label {
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 400;
  color: #d6d6d6;
  line-height: 1.5;
  max-width: 400px;
}

.specs-section__btn {
  padding: 14px 28px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  max-width: 400px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: auto;
}

.specs-section__btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.specs-section__btn:active {
  transform: translateY(0);
}

.specs-section__image-wrapper {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.specs-section.is-visible .specs-section__image-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.specs-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet Responsive Styles for Specs Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .specs-section {
    padding: 80px 35px;
  }

  .specs-section__container {
    gap: 50px;
  }

  .specs-section__title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .specs-section__content {
    gap: 45px;
  }

  .specs-section__spec-value {
    font-size: clamp(32px, 4vw, 48px);
  }

  .specs-section__spec-label {
    font-size: clamp(14px, 1.8vw, 17px);
  }

  .specs-section__btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* Mobile Responsive Styles for Specs Section */
@media screen and (max-width: 767px) {
  .specs-section {
    padding: 60px 25px;
  }

  .specs-section__container {
    gap: 40px;
  }

  .specs-section__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .specs-section__content {
    gap: 35px;
  }

  .specs-section__specs {
    order: 2;
  }

  .specs-section__image-wrapper {
    order: 1;
  }

  .specs-section__spec-value {
    font-size: clamp(28px, 6vw, 42px);
  }

  .specs-section__spec-label {
    font-size: 16px;
    max-width: 100%;
  }

  .specs-section__btn {
    padding: 12px 24px;
    font-size: 14px;
    width: auto;
  }
}

/* Small Mobile Devices for Specs Section */
@media screen and (max-width: 480px) {
  .specs-section {
    padding: 50px 25px;
  }

  .specs-section__container {
    gap: 35px;
  }

  .specs-section__title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .specs-section__content {
    gap: 35px;
  }

  .specs-section__spec-value {
    font-size: clamp(24px, 5vw, 36px);
  }

  .specs-section__spec-label {
    font-size: 15px;
  }

  .specs-section__btn {
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* Technology Section */
.technology-section {
  width: 100%;
  background-color: #000000;
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology-section__container {
  max-width: 1600px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.technology-section__image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.technology-section__image-wrapper.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.technology-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.technology-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.technology-section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.technology-section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.technology-section__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.technology-section__feature-column {
  display: flex;
  flex-direction: column;
}

.technology-section__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.technology-section__feature-item {
  font-size: clamp(14px, 1.4vw, 14px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technology-section.is-visible .technology-section__feature-item {
  opacity: 1;
  transform: translateX(0);
}

.technology-section.is-visible .technology-section__feature-item:nth-child(1) {
  transition-delay: 0.15s;
}

.technology-section.is-visible .technology-section__feature-item:nth-child(2) {
  transition-delay: 0.25s;
}

.technology-section.is-visible .technology-section__feature-item:nth-child(3) {
  transition-delay: 0.35s;
}

.technology-section.is-visible .technology-section__feature-item:nth-child(4) {
  transition-delay: 0.45s;
}

.technology-section.is-visible .technology-section__feature-item:nth-child(5) {
  transition-delay: 0.55s;
}

.technology-section.is-visible .technology-section__feature-item:nth-child(6) {
  transition-delay: 0.65s;
}

.technology-section__feature-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
}

/* Tablet Responsive Styles for Technology Section */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .technology-section {
    padding: 80px 35px;
  }

  .technology-section__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .technology-section__image-wrapper {
    order: 0;
  }

  .technology-section__content {
    order: 1;
    gap: 35px;
  }

  .technology-section__title {
    font-size: clamp(26px, 4vw, 36px);
    text-align: center;
  }

  .technology-section__features {
    gap: 40px;
  }

  .technology-section__feature-item {
    font-size: clamp(15px, 1.8vw, 16px);
  }
}

/* Mobile Responsive Styles for Technology Section */
@media screen and (max-width: 767px) {
  .technology-section {
    padding: 60px 25px;
  }

  .technology-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .technology-section__image-wrapper {
    order: 0;
  }

  .technology-section__content {
    order: 1;
    gap: 30px;
  }

  .technology-section__title {
    font-size: clamp(24px, 6vw, 32px);
    text-align: center;
  }

  .technology-section__features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .technology-section__feature-list {
    gap: 18px;
  }

  .technology-section__feature-item {
    font-size: 15px;
  }
}

/* Small Mobile Devices for Technology Section */
@media screen and (max-width: 480px) {
  .technology-section {
    padding: 50px 25px;
  }

  .technology-section__container {
    gap: 35px;
  }

  .technology-section__content {
    gap: 25px;
  }

  .technology-section__title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .technology-section__features {
    gap: 25px;
  }

  .technology-section__feature-list {
    gap: 16px;
  }

  .technology-section__feature-item {
    font-size: 14px;
    padding-left: 18px;
  }

  .technology-section__feature-item::before {
    font-size: 18px;
  }
}



/* Drive CTA section */
.drive {
  position: relative;
  background: url("../assets/images/drivebg.png") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 8vw, 80px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.drive.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drive__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.849) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 100%);
}

.drive__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out 0.15s, transform 0.7s ease-out 0.15s;
}

.drive.is-visible .drive__content {
  opacity: 1;
  transform: translateY(0);
}

.drive__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #d8d8d8;
}

.drive__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.drive__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.drive__btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
}

.drive__btn:nth-child(1) {
  transition-delay: 0.12s;
}

.drive__btn:nth-child(2) {
  transition-delay: 0.18s;
}

.drive.is-visible .drive__btn {
  opacity: 1;
  transform: translateY(0);
}

.drive__btn--light {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.drive__btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.drive__btn--dark {
  background: #1f1f1f;
  color: #fff;
  border-color: #3a3a3a;
  font-weight: 400;
}

.drive__btn--dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.drive__btn--light a {
  text-decoration: none;
  color: #000;
}

.drive__btn--dark a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1024px) {
  .drive {
    min-height: 60vh;
    background-position: center top;
  }
  .drive__content {
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .drive {
    min-height: 55vh;
    padding: 48px 24px;
  }
  .drive__content {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .drive {
    min-height: 480px;
    padding: 44px 30px;
  }
  .drive__content {
    align-items: center;
    text-align: center;
  }
  .drive__actions {
    justify-content: center;
  }
}

/* Brochure Modal */
.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brochure-modal.is-active {
  display: flex;
  opacity: 1;
}

.brochure-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.brochure-modal__content {
  position: relative;
  z-index: 1;
  background: #000000;
  border-radius: 12px;
  padding: 40px 50px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.brochure-modal.is-active .brochure-modal__content {
  transform: scale(1) translateY(0);
}

.brochure-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.brochure-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.brochure-modal__close:active {
  transform: rotate(90deg) scale(0.95);
}

.brochure-modal__title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1px 0;
}

.brochure-modal__subtitle {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 32px 0;
  font-weight: 300;
  line-height: 1.5;
}

.brochure-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brochure-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brochure-modal__label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

.brochure-modal__input {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  color: #000000;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.brochure-modal__input::placeholder {
  color: #888888;
}

.brochure-modal__privacy {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin: -8px 0 0 0;
  font-weight: 300;
  opacity: 0.8;
}

.brochure-modal__submit {
  width: 100%;
  padding: 12px 24px;
  background: #2a2a2a;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  margin-top: 8px;
}

.brochure-modal__submit:hover {
  background: #353535;
  transform: translateY(-2px);
  border-color: #ffffff;
}

.brochure-modal__submit:active {
  transform: translateY(0);
}

.brochure-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive styles for modal */
@media (max-width: 768px) {
  .brochure-modal__content {
    padding: 32px 28px;
    max-width: 90%;
    border-radius: 10px;
  }

  .brochure-modal__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .brochure-modal__subtitle {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .brochure-modal__form {
    gap: 20px;
  }

  .brochure-modal__close {
    top: 16px;
    right: 16px;
    font-size: 20px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .brochure-modal {
    padding: 16px;
  }

  .brochure-modal__content {
    padding: 28px 24px;
    max-width: 100%;
    border-radius: 8px;
  }

  .brochure-modal__title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .brochure-modal__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .brochure-modal__form {
    gap: 18px;
  }

  .brochure-modal__label {
    font-size: 13px;
  }

  .brochure-modal__input {
    padding: 10px 14px;
    font-size: 13px;
  }

  .brochure-modal__privacy {
    font-size: 11px;
  }

  .brochure-modal__submit {
    padding: 10px 20px;
    font-size: 13px;
  }

  .brochure-modal__close {
    top: 12px;
    right: 12px;
    font-size: 18px;
    width: 26px;
    height: 26px;
  }
}