/* Base styles – Poppins, colors, typography */

:root {
  --color-primary: #182B77;
  --color-body-text: #515151;
  --color-accent-red: #E92026;
  --color-accent-yellow: #f4c430;
  --color-white: #fff;
  --color-cream: #FFE59B;
  --max-width: 1240px;
  --header-height: 64px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-body-text);
  font-size: 16px;
  line-height: 1.5;
}

h2 {
  font-weight: 600;
  color: var(--color-primary);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--color-accent-red);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
}

.logo-img {
  width: auto;
  height: 58px;
}

.header-right{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.header-find-cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 4px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--color-white);
  border: 1px solid #ffffff;
  padding: 7px 48px 7px 16px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  height: 40px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url(../img/chevron-down.svg) no-repeat 80% center;
  background-size: 24px auto;
  outline: none;
}
.lang-switcher option{
  color: #000000;
}


/* Hero – full image */
.hero {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.hero-carousel{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.hero-carousel picture{
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.hero-carousel .slick-dots{
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.60);
  display: inline-flex;
  padding: 12px 16px;
  align-items: center;
  gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.hero-carousel .slick-dots li{
  width: auto;
  margin: 0;
}
.hero-carousel .slick-dots li button{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.hero-carousel .slick-dots li button:before{
  display: none;
}
.hero-carousel .slick-dots li.slick-active button{
  opacity: 1;
  width: 32px;
  border-radius: 100px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Metrics */
.metrics {
  background: #214EA3;
  padding: 40px 0;
}

.metrics-inner {
  width: 100%;
  overflow: hidden;
}

.metrics-scroll-view {
  overflow: hidden;
  width: 100%;
}

.metrics-item-wrap {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: metrics-scroll 40s linear infinite;
}

.metrics-item-wrap.paused {
  animation-play-state: paused;
}

@keyframes metrics-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.metrics-scroll-track {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  padding: 0 12px;
}

.metrics-item {
  flex-shrink: 0;
  text-shadow: 2px 2px 0 #9A1B27;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  background: linear-gradient(180deg, #FBEFCD 0%, #FED87F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FBEFCD;
}

.metrics-item-separator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.metrics-item-separator img {
  width: 24px;
  height: 24px;
}

/* Section common */
.section-title {
  text-align: center;
  font-size: 40px;
font-weight: 600;
line-height: 1.05;
text-transform: capitalize;
  margin-bottom: 16px;
}

.section-desc {
  text-align: center;
  color: var(--color-body-text);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-left {
  text-align: left;
}

.section-desc-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* TVC Section */
.tvc-section {
  padding: 60px 0;
  background: var(--color-white);
}

.tvc-carousel {
  overflow: hidden;
  margin-top: 48px;
}

.tvc-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tvc-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.tvc-slide-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.tvc-slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.tvc-play img {
  width: 64px;
  height: 64px;
}

/* Calculator Section */
.calculator-section {
  padding: 60px 0 100px;
  background-color: var(--color-cream);
}

.calculator-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  margin-top: 60px;
}

.calc-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  border: 1px solid #D8E3EF;
  background-color: #F2F7FA;
}

.calc-card-img {
  height: 183px;
  width: auto;
  margin: -24px auto 0;
  object-fit: contain;
}
.calc-card-content{
  padding: 32px 20px 24px;
  border-radius: 16px;
background: #FFF;
box-shadow: 0 -6px 4px 0 rgba(0, 0, 0, 0.02);
margin-top: -10px;
}

.calc-card-title {
  color: var(--color-primary);
font-size: 20px;
font-weight: 600;
line-height: 1.5;
text-transform: capitalize;
margin-bottom: 16px;
}

.calc-quantity-label {
  font-size: 12px;
font-weight: 500;
line-height: 1;
letter-spacing: 0.24px;
text-transform: uppercase;
opacity: 0.5;
margin-bottom: 8px;
}

.calc-card-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px;
  background: var(--color-primary);
  border-radius: 8px;
}

.calc-btn {
  width: 36px;
  height: 36px;
  background: var(--color-accent-red);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.calc-btn img {
  width: 20px;
  height: 20px;
}

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

.calc-input-wrap {
  flex: 1;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  padding-right: 30px;
}

.calc-input {
  width: 64px;
  padding: 5px 0;
  text-align: right;
  font-size: 16px;
  line-height: 24px;
  border-radius: 0;
  border: 0 none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.calc-unit{
  color: rgba(255, 255, 255, 0.5);
}

.calc-rate {
  font-size: 12px;
text-transform: capitalize;
}

.coupon-total-wrap {
  margin-bottom: 40px;
  margin-top: 40px;
}

.coupon-total-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-accent-red);
  color: var(--color-white);
  border-right: 4px dashed rgba(255, 255, 255, 0.5);
  max-width: calc(100% - 40px);
  width: calc(100% - 40px);
  margin: 0 auto;
}
.coupon-total-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 100%;
  background: transparent url(../img/coupon-strip.png) no-repeat left center;
}
.coupon-total-box::after{
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: transparent url(../img/coupon-strip.png) no-repeat right center;
}

.coupon-total-label {
  width: 60%;
  color: #FFF;
  text-align: center;
  text-shadow: 2px 4px 0 #9A1B27;
  font-family: Poppins;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.28;
  padding: 40px 0;
}

.coupon-total-value {
  text-shadow: 2px 2px 0 #9A1B27;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.89;
  background: linear-gradient(180deg, #FBEFCD 0%, #FED87F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FBEFCD;
  width: 40%;
  text-align: center;
  border-left: 7px dashed #FBEFCD;
  padding: 40px 0;
}

.calculator-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.calculator-section .section-desc{
  margin-bottom: 60px;
}

.btn {
  padding: 10px 24px;
  text-align: center;
  font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.32px;
text-transform: uppercase;
  cursor: pointer;
  border-radius: 12px;
  border: 4px solid #ED5043;
}

.btn-primary-red {
  background: var(--color-accent-red);
  color: var(--color-white);
}

.btn-primary-blue {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: #213AA1;
}
.btn-large{
  width: 250px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn:hover {
  opacity: 0.92;
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
  background: var(--color-white);
}

.testimonials-wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}
.testimonials-left{
  width: 30%;
}
.testimonials-carousel{
  width: calc(70% - 80px);
  overflow: hidden;
  white-space: nowrap;
}

.testimonial-social-feeds{
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.testimonial-social-feeds a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F2F7FA;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.testimonial-social-feeds img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(63%) saturate(2500%) hue-rotate(221deg) brightness(92%) contrast(91%);
}

.testimonials-nav {
  display: flex;
  gap: 12px;
}

.testimonial-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F2F7FA;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 32px auto;
  background-image: url(../img/arrow-left.svg);
  text-indent: -9999px;
  overflow: hidden;
}
.testimonial-arrow.testimonial-next{
  background-image: url(../img/arrow-left.svg);
  transform: rotate(180deg);
}

.testimonial-arrow:hover {
  opacity: 0.9;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0;
}

.testimonial-slide {
  width: 100%;
  scroll-snap-align: start;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.testimonial-slide a{
  display: block;
}

.testimonial-img-wrap {
  
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.testimonial-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  text-align: left;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0e0e0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--color-body-text);
}

/* Footer */
.footer {
  background: var(--color-primary);
  padding: 40px 0;
}

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

.footer-legal {
  color: var(--color-white);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* TVS Slider */
.exploreautoplane__gallery__section{position: relative;overflow: hidden;padding: 80px 0;}
.exploreautoplane__gallery__wrapper h2{font-size: 40px;font-weight: 600;color: #000;margin-bottom: 40px;text-align: center;}
.exploreautoplane__gallery__slider{position: relative;width: 100%;margin-top: 48px;}
.exploreautoplane__gallery__slide{position: relative;width: 100%;}
.exploreautoplane__gallery__slide figure{position: relative;width: 100%;border-radius: 10px;}
.exploreautoplane__gallery__slide figure img{width: 100%;height: auto;display: block;border-radius: 10px;}
.exploreautoplane__gallery__slide.slick-slide{transform: scale(0.85);opacity: 0.5;transition: all 0.3s ease-in-out;}
.exploreautoplane__gallery__slide.slick-slide.slick-current{transform: scale(1);opacity: 1;}
.exploreautoplane__gallery__slider .slick-prev, .exploreautoplane__gallery__slider .slick-next{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F2F7FA;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 32px auto;
    background-image: url(../img/arrow-left.svg);
    text-indent: -9999px;
    overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.exploreautoplane__gallery__slider .slick-prev{
  left: 100px;
  transform: none;
}
.exploreautoplane__gallery__slider .slick-next{
  right: 100px;
  transform: rotate(180deg);
}
.exploreautoplane__gallery__slider.slick-arrow::before,
.exploreautoplane__gallery__slider.slick-arrow::after{
  display: none;
}
.exploreautoplane__gallery__slide a{
  display: block;
  position: relative;
}
.exploreautoplane__gallery__slide a .play-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/play-icon.svg);
}
.exploreautoplane__gallery__slide:not(.slick-active) a .play-icon{
  display: none;
}

/* Request A Pickup modal */
.pickup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pickup-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pickup-modal.is-open .pickup-modal__dialog {
  transform: translateY(0);
}

body.pickup-modal-open {
  overflow: hidden;
}

.pickup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.pickup-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 60px 80px;
  transform: translateY(100vh);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.pickup-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pickup-modal__close img {
  width: 32px;
  height: 32px;
}

/* Pickup form */
.pickup-form__title {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.pickup-form__row {
  margin-bottom: 16px;
}

.pickup-form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pickup-form__input,
.pickup-form__select,
.pickup-form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body-text);
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.pickup-form__input::placeholder,
.pickup-form__textarea::placeholder {
  color: #ADB5BD;
}

.pickup-form__input:focus,
.pickup-form__select:focus,
.pickup-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* .pickup-form__textarea {
  resize: vertical;
  min-height: 80px;
} */

.pickup-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23515151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.pickup-form__field--phone {
  display: flex;
  align-items: center;
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 6px;
  overflow: hidden;
}

.pickup-form__phone-prefix {
  padding: 12px 14px;
  font-size: 14px;
  color: #6C757D;
  background: transparent;
  flex-shrink: 0;
}

.pickup-form__input--phone {
  border: none;
  background: transparent;
  padding-left: 0;
}

.pickup-form__disclaimer {
  font-size: 13px;
  color: #6C757D;
  margin: 8px 0 16px;
  line-height: 1.5;
}

.pickup-form__row--checkbox {
  margin-bottom: 20px;
}

.pickup-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-body-text);
}

.pickup-form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 2px solid #1E2C60;
  border-radius: 3px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pickup-form__checkbox::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  opacity: 0;
}

.pickup-form__checkbox:checked {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
}

.pickup-form__checkbox:checked::after {
  opacity: 1;
}

.pickup-form__checkbox:focus-visible {
  outline: 3px solid rgba(24, 43, 119, 0.25);
  outline-offset: 2px;
}

.pickup-form__checkbox-text {
  line-height: 1.5;
}

.pickup-form__link {
  color: var(--color-accent-red);
  text-decoration: underline;
}

.pickup-form__link:hover {
  text-decoration: none;
}

/* .pickup-form__submit {
  width: 100%;
  padding: 14px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: var(--color-accent-red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(233, 32, 38, 0.3);
} */
.pickup-form__submit {
  width: 250px;
  max-width: 100%;
}

.pickup-form__submit:hover {
  opacity: 0.92;
}

.sticky-social{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background-color: var(--color-primary);
  padding: 24px 16px;
  border-radius: 16px 0 0 16px;
box-shadow: -4px 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.sticky-social-inner{
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  
}
.slick-arrow{
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.slick-arrow:hover{
  transform: scale(1.1);
}
.slick-next:hover, .testimonial-next:hover{
  transform: scale(1.1) rotate(180deg) !important;
}

.calc-ctas-section{
  position: relative;
  background-color: #ffffff;
  padding: 0 0 60px;
}
.calc-ctas-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  top: -94px;
  position: relative;
  z-index: 3;
  margin-bottom: -94px;
}
.calc-cta-block{
  position: relative;
  width: 50%;
  background-color: var(--color-primary);
  padding: 32px 64px 32px 40px;
  border-radius: 24px 0 0 24px;
background: linear-gradient(270deg, #182B77 0%, #2459A9 100%);
}
.calc-cta-block-red{
  border-radius: 0 24px 24px 0;
background: linear-gradient(270deg, #ED5043 0%, #E92026 100%);
}
.calc-cta-block{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.calc-cta-block-blue:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 100%;
  background-image: url(../img/calc-cta-block-corner.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%;
}
.calc-cta-block-img{
  width: 80px;
}
.calc-cta-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  color: #ffffff;
}
.calc-cta-content .calc-cta-title{
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1
}
.calc-cta-desc{
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .calculator-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    margin-left: 0;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 40px;
    margin-top: 26px;
  }

  .calculator-cards .calc-card {
    flex: 0 0 auto;
    min-width: 280px;
    scroll-snap-align: start;
  }
  .coupon-total-label{
    font-size: 24px;
  }
  .coupon-total-value{
    font-size: 50px;
  }

  .calc-ctas-inner{
    flex-direction: column;
  }
  .calc-cta-block{
    width: 100%;
  }
  .calc-cta-block-blue{
    padding: 24px 20px 56px 20px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(0deg, #182B77 0%, #2459A9 100%);
  }
  .calc-cta-block-red{
    padding: 24px;
    border-radius: 0 0 16px 16px;
background: linear-gradient(0deg, #ED5043 0%, #E92026 100%);
  }
  .calc-cta-block-blue:after{
    width: 100%;
    height: 40px;
    left: 0;
    bottom: 0;
    top: auto;
    right: auto;
    background-image: url(../img/calc-cta-block-corner-mob.png);
    background-size: 100% 100%;
  }
  .calc-cta-content .calc-cta-title{
    font-size: 20px;
  }
  .calc-cta-content .calc-cta-desc{
    font-size: 16px;
  }
  .calculator-section .section-desc{
    margin-bottom: 30px;
  }
  
}

@media (max-width: 640px) {
  body{
    font-size: 14px;
  }
  .header{
    padding: 12px 0;
  }

  .lang-switcher{
    padding: 3px 36px 3px 8px;
    height: 32px;
    background-size: 20px auto;
  }
  .metrics{
    padding: 16px 0;
  }
  .metrics-item{
    font-size: 32px;
    line-height: 2;
  }
  .tvc-section, .calculator-section, .testimonials-section{
    padding: 40px 0;
  }
  .section-title{
    font-size: 24px;
    line-height: 1.25;
  }

  .btn {
    max-width: 100%;
  }

  /* .coupon-total-box{
    flex-direction: column-reverse;
    max-width: 100%;
        width: 100%;
  }
  .coupon-total-box::before{
    left: 0;
    top: -20px;
    width: 100%;
    height: 20px;
    background-image: url(../img/coupon-mob-rib.png);
    background-repeat: repeat-x;
    background-position: left center;
  }
  .coupon-total-box::after{
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 20px;
    background-image: url(../img/coupon-mob-rib.png);
    background-repeat: repeat-x;
    background-position: left center;
    transform: rotate(180deg);
    top: auto;
  } */
  .coupon-total-label{
    width: 50%;
    font-size: 18px;
    line-height: 1.6;
    padding: 24px 0;
  }
  .coupon-total-value{
    width: 50%;
    font-size: 42px;
    line-height: 1.15;
    padding: 34px 0;
    /* border-bottom: 5px dashed #FBEFCD; */
  }
  .coupon-total-box{
    border: 0 none;
  }
  .coupon-total-wrap{
    margin-bottom: 0;
    margin-top: 24px;
  }
  .exploreautoplane__gallery__slide.slick-slide{
    transform: scale(1);
  }
  .exploreautoplane__gallery__slide a{
    margin: 0 8px;
  }
  .testimonials-wrapper{
    flex-direction: column;
    gap: 8px;
    padding-bottom: 80px;
    position: relative;
  }
  .testimonials-left{
    width: 100%;
    text-align: center;
  }
  .testimonials-left .section-title, .section-desc-left{
    text-align: center !important;
  }
  .testimonials-carousel{
    width: 100%;
  }
  .testimonials-nav {
      position: absolute;
      bottom: 0;
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
  }
  .testimonial-arrow, .exploreautoplane__gallery__slider .slick-arrow{
    width: 48px;
    height: 48px;
    background-size: 24px auto;
  }

  .exploreautoplane__gallery__slider .slick-prev{
    top: auto;
    bottom: 0;
    left: 50%;
    margin-left: -54px;
  }
  .exploreautoplane__gallery__slider .slick-next{
    top: auto;
    bottom: 0;
    right: 50%;
    margin-right: -54px;
  }
  .calculator-actions {
    gap: 16px
  }
  .calculator-actions .btn-large{
    width: calc(50% - 8px);
  }
  .btn{
    font-size: 14px;
    padding: 12px 12px;
    line-height: 20px;
  }
  .calculator-cards{
    margin-bottom: 30px;
    margin-top: 0;
  }
  .testimonial-slide a{
    margin: 0 8px;
  }

  /* Pickup modal: full-width bottom sheet on mobile */
  .pickup-modal {
    align-items: flex-end;
    padding: 0;
  }

  .pickup-modal__dialog {
    width: 100%;
    max-width: none;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    padding: 30px 20px calc(40px + env(safe-area-inset-bottom, 0px));
  }

  .pickup-form__title{
    font-size: 24px;
  }
  .pickup-form__row--half {
    grid-template-columns: 1fr;
  }
  
  .exploreautoplane__gallery__slider{
    padding-bottom: 80px;
    margin-top: 24px;
  }

  .footer-inner{
    justify-content: center;
    text-align: center;
    gap: 32px;
  }
  .footer-social{
    gap: 20px;
  }
  .fancybox-slide--video .fancybox-content{
    height: 80vh !important;
  }
  .sticky-social{
    padding: 16px 12px;
  }

  .header-find-cta{
    padding: 0;
    width: 32px;
    height: 32px;
  }
  .header-find-cta span{
    display: none;
  }
  .testimonial-social-feeds{
    justify-content: center;
  }
  
  .calculator-section .section-desc{
    margin-bottom: 90px;
  }
  .pickup-modal__close{
    right: 20px;
    top: 20px;
  }
  
  
}