
/* ===== AIWA RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FOOTER (FINAL OVERRIDES) =====
   There are multiple older footer style blocks in this file.
   These rules are placed at the end to ensure consistent footer + mobile behavior.
*/
.aiwa-footer {
  background-color: #1d1e1f;
  color: #fff;
  padding: 0px 0;
}

.aiwa-footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
}

/* Top horizontal line (full viewport width) */
.aiwa-footer .footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.7);
}

/* Center vertical line between columns (connects to top line and fades down) */
.aiwa-footer .footer-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.aiwa-footer .footer-left::after {
  content: "";
  position: absolute;
  right: -30px; /* half of 60px gap */
  top: 0;
  height: 100%;
  width: 0.5px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

.aiwa-footer .footer-menu a:hover,
.aiwa-footer .write-us-link:hover {
  color: #ffcf48;
}

@media (max-width: 873px) {
  .aiwa-footer {
    padding: 32px 0;
  }

  .aiwa-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Keep top line but avoid accidental overflow spacing */
  .aiwa-footer .footer-inner::before {
    width: 100%;
    left: 0;
    transform: none;
  }

  /* Hide center vertical line when stacked */
  .aiwa-footer .footer-left::after {
    display: none;
  }

  .aiwa-footer .footer-phone,
  .aiwa-footer .footer-email {
    font-size: 28px;
    line-height: 1.1;
  }

  .aiwa-footer .write-us-link {
    font-size: 32px;
  }

  .aiwa-footer .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== SINGLE CAR PAGE ===== */
.aiwa-car-page {
  background: #f5f5f5;
}



.car-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin: 12px 0 10px;
}

.car-breadcrumb a {
  color: rgba(0, 0, 0, 0.6);
}

.car-page-title {
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 18px;
  color: #111;
}

.car-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Gallery */
.aiwa-car-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.aiwa-car-gallery-viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aiwa-car-gallery-track {
  height: 100%;
  display: flex;
  transition: transform 500ms ease;
  will-change: transform;
}

.aiwa-car-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
}

.aiwa-car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aiwa-car-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  background: #1d1e1f;
}

.aiwa-car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.aiwa-car-nav-prev { left: 18px; }
.aiwa-car-nav-next { right: 18px; }

.aiwa-car-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: 90%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}

.aiwa-car-progress-bar {
  height: 100%;
  width: 0%;
  background: #ffcf48;
  border-radius: 999px;
}

/* Booking card */
.car-booking-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.car-booking-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: #111;
  font-weight: 600;
}

.car-date-box {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.7);
  display: grid;
  gap: 10px;
}

.car-date-row {
  display: grid;
  gap: 6px;
}

.car-date-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.car-date-range {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.car-date-range::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* Inline datepicker popover */
.car-date-picker-wrap {
  position: relative;
}

.aiwa-datepicker-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 520px);
  z-index: 9999;
}

.aiwa-datepicker-popover[aria-hidden="true"] {
  display: none;
}

.aiwa-datepicker-popover[aria-hidden="false"] {
  display: block;
}

/* jQuery UI Datepicker styling (range like reference) */
.ui-datepicker {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 10px 10px;
  z-index: 9999 !important;
  width: 100% !important; /* fit inside popover */
}

/* We use an inline datepicker (#aiwa_rent_picker). Hide the unused default container
   that jQuery UI injects into the DOM (#ui-datepicker-div) so it doesn't show after footer. */
#ui-datepicker-div {
  display: none !important;
}

.ui-datepicker-multi {
  width: 100% !important;
}

/* Make the 2-month calendar more compact (prevents overflow in the booking card) */
.ui-datepicker .ui-datepicker-title {
  font-size: 14px;
}

.ui-datepicker th {
  font-size: 11px;
}

.ui-datepicker td a,
.ui-datepicker td span {
  padding: 4px 0;
  font-size: 12px;
}

.ui-datepicker-multi .ui-datepicker-group {
  width: 50% !important;
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 100%;
}

.ui-datepicker-multi .ui-datepicker-group-first {
  padding-right: 10px;
}

.ui-datepicker-multi .ui-datepicker-group-last {
  padding-left: 10px;
}

.ui-datepicker-multi:after {
  content: "";
  display: block;
  clear: both;
}

/* Make calendar much smaller on mobile (responsive) */
@media (max-width: 873px) {
  .aiwa-datepicker-popover {
    width: min(92vw, 420px);
  }

  .ui-datepicker,
  .ui-datepicker-multi {
    width: min(92vw, 420px) !important;
  }

  /* (font sizing handled above for all viewports) */

  .ui-datepicker-multi .ui-datepicker-group-first {
    padding-right: 6px;
  }

  .ui-datepicker-multi .ui-datepicker-group-last {
    padding-left: 6px;
  }
}

/* ===== BOOKING MODAL ===== */
.aiwa-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

/* ===== FLEET PAGE ===== */
.aiwa-fleet-page {
  background: #f5f5f5;
}

.aiwa-fleet-hero {
  position: relative;
  padding: 0 0 20px;
}

.aiwa-fleet-hero-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  margin: 0 auto;
  max-width: 2000px;
}

.aiwa-fleet-hero-track {
  display: flex;
  transition: transform 600ms ease;
}

.aiwa-fleet-hero-slide {
  min-width: 100%;
  height: clamp(360px, 48vw, 620px);
  position: relative;
}

.aiwa-fleet-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aiwa-fleet-hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: min(92vw, 2000px);
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

.aiwa-fleet-hero-content.aiwa-hero-text-out {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 260ms ease-in-out, transform 260ms ease-in-out;
}

.aiwa-fleet-hero-content.aiwa-hero-text-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity 420ms ease-in-out, transform 420ms ease-in-out;
}

.aiwa-fleet-crumbs {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.aiwa-fleet-crumbs a {
  color: rgba(255,255,255,0.85);
  pointer-events: auto;
}

.aiwa-fleet-crumbs a:hover {
  color: #ffcf48;
}

.aiwa-crumb-sep {
  opacity: 0.7;
}

.aiwa-fleet-hero-title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.aiwa-fleet-hero-subtitle {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 600;
  margin: 0 0 10px;
  color: #911a26;
}

.aiwa-fleet-hero-desc {
  max-width: 620px;
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  color: white;
}

.aiwa-fleet-hero-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: 90%;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}

.aiwa-fleet-hero-progress-bar {
  height: 100%;
  width: 0%;
  background: #ffcf48; /* match main gold progress */
  border-radius: 999px;
}

.aiwa-fleet-hero-nav {
  position: absolute;
  bottom: 8px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: #fff;
  z-index: 3;
  cursor: pointer;
}
.aiwa-fleet-hero-prev { right: 72px; }
.aiwa-fleet-hero-next { right: 24px; }

/* 4-card section */
.aiwa-fleet-cards {
  padding: 0;
}

.aiwa-fleet-cards-inner {
  background: #1d1e1f;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
  padding: 26px 0 70px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.aiwa-cards-grid {
  display: grid;
  gap: 18px;
}

.aiwa-cards-top {
  display: grid;
  grid-template-columns: 2fr 3fr; /* 40/60 */
  gap: 18px;
}

.aiwa-cards-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.aiwa-card {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  position: relative;
  min-height: 260px;
}

.aiwa-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aiwa-card-pros {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* don't push text down */
  background: #111;
  color: #fff;
}

.aiwa-card-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 999px;
}

.aiwa-card-top {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 0;
}

.aiwa-pros-text {
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 10px;
  position: relative;
  flex: 1;
  min-height: clamp(180px, 16vw, 260px); /* give room so the copy can be centered */
  display: flex;
  align-items: center; /* center vertically */
}

.aiwa-pros-copy {
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  margin: 0;
  color: #bf9a6e;
  display: block;
  max-width: 60%;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% + 8px));
  transition: opacity 420ms ease, transform 420ms ease;
}

.aiwa-pros-copy.is-active {
  opacity: 1;
  transform: translateY(-50%);
}

.aiwa-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  margin-top: auto; /* keep controls at the bottom without creating a big gap above text */
}

.aiwa-card-counter {
  font-size: 12px;
  opacity: 0.7;
}

.aiwa-card-arrows {
  display: flex;
  gap: 10px;
}

.aiwa-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
}

.aiwa-card-link .aiwa-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  color: #fff;
}

.aiwa-card-link img {
  transition: transform 300ms ease;
}

.aiwa-card-link .aiwa-card-round {
  transition: background 200ms ease, color 200ms ease;
}

.aiwa-card-link:hover img {
  transform: scale(1.04);
}

.aiwa-card-link:hover .aiwa-card-round {
  background: #ffcf48;
  color: #111;
}

.aiwa-card-link h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.aiwa-card-round {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.aiwa-card-round svg {
  display: block;
}

@media (max-width: 873px) {
  .aiwa-fleet-hero-bg {
    border-radius: 14px;
  }
  .aiwa-cards-top,
  .aiwa-cards-bottom {
    grid-template-columns: 1fr;
  }
  .aiwa-pros-copy {
    max-width: 100%;
  }
  .aiwa-card {
    min-height: 220px;
  }
  .aiwa-card-link h3 {
    font-size: 24px;
  }
}

.aiwa-modal[aria-hidden="false"] {
  display: block;
}

.aiwa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.aiwa-modal-dialog {
  position: relative;
  width: min(92vw, 1050px);
  margin: 6vh auto;
  z-index: 1;
}

.aiwa-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
}

.aiwa-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aiwa-modal-panel {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.aiwa-modal-form {
  padding: 26px;
}

.aiwa-modal-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.aiwa-booking-form {
  display: grid;
  gap: 14px;
}

.aiwa-input,
.aiwa-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 14px 14px;
  font-size: 15px;
}

.aiwa-textarea {
  min-height: 140px;
  resize: vertical;
}

.aiwa-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

.aiwa-modal-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  line-height: 1.45;
}

/* Summary panel */
.aiwa-summary-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.aiwa-summary-body {
  padding: 18px 20px 22px;
}

.aiwa-summary-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.aiwa-summary-table {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 10px;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.aiwa-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
}

.aiwa-summary-row strong {
  color: #111;
  font-weight: 600;
}

.aiwa-summary-total {
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 6px;
}

.aiwa-summary-total strong {
  font-size: 22px;
  font-weight: 800;
}

@media (max-width: 873px) {
  .aiwa-modal-dialog {
    width: min(94vw, 560px);
    margin: 4vh auto;
  }
  .aiwa-modal-grid {
    grid-template-columns: 1fr;
  }
  .aiwa-summary-image img {
    height: 200px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
  padding: 6px 0 12px;
}

.ui-datepicker .ui-datepicker-title {
  font-weight: 600;
  color: #111;
  font-size: 16px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background: #f6f6f6;
}

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}

.ui-datepicker th {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  padding: 6px 0;
  font-size: 12px;
}

.ui-datepicker td {
  padding: 4px;
}

.ui-datepicker td a,
.ui-datepicker td span {
  display: block;
  text-align: center;
  padding: 6px 0;
  border-radius: 999px;
  border: none !important;
  background: transparent;
  color: #111;
  font-size: 13px;
}

.ui-datepicker td a:hover {
  background: rgba(255, 207, 72, 0.25);
}

/* Range highlight classes injected by beforeShowDay */
.ui-datepicker td.aiwa-range-mid a {
  background: rgba(191, 154, 110, 0.25);
  border-radius: 0;
}

.ui-datepicker td.aiwa-range-start a,
.ui-datepicker td.aiwa-range-end a {
  background: #bf9a6e;
  color: #fff;
}

.ui-datepicker td.aiwa-range-start a {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.ui-datepicker td.aiwa-range-end a {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.car-date-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
}

.car-date-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.car-days-label {
  color: rgba(0, 0, 0, 0.6);
}

.car-days-value {
  font-weight: 600;
  color: #111;
}

.car-rate-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: #111;
  font-weight: 600;
}

.car-rate-table {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

.rate-row.total {
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  font-weight: 600;
}

.car-primary-btn,
.car-secondary-btn {
  display: block;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 12px;
}

.car-primary-btn {
  background: #111;
  color: #fff;
}

.car-secondary-btn {
  border: 1px solid #bf9a6e;
  color: #bf9a6e;
  background: transparent;
}

.car-links {
  margin-top: 14px;
}

.car-links a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

/* Specs */
.car-specs-section {
  padding: 30px 0 90px;
}

.car-specs-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
}

.car-specs-grid {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.car-specs-grid .spec {
  padding: 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.car-specs-grid .spec span {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 6px;
}

.car-specs-grid .spec strong {
  color: #111;
  font-size: 18px;
  font-weight: 600;
}

.car-description {
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.75);
}

@media (max-width: 873px) {
  .car-page-title { font-size: 34px; }
  .car-hero-grid { grid-template-columns: 1fr; }
  .car-specs-grid { grid-template-columns: 1fr 1fr; }
}

/* FAQ Mobile override */
@media (max-width: 873px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-item {
    padding: 20px;
  }
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #911a26;
  padding-top: 0px; /* Match reduced fixed header height */
  overflow-x: hidden; /* Prevent horizontal scroll from full-width elements */
}

/* RTL support for Arabic */
body.aiwa-lang-ar {
  direction: rtl;
}
body.aiwa-lang-ar .aiwa-header,
body.aiwa-lang-ar .aiwa-mobile-menu,
body.aiwa-lang-ar .aiwa-main,
body.aiwa-lang-ar .aiwa-car-page {
  text-align: right;
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ===== HEADER ===== */
.aiwa-header {
  background: #911a26;
  color: #fff;
  transition: all 0.3s ease;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Scroll State */
.aiwa-header.scroll {
  background: rgba(145, 26, 38, 0.85); /* Slightly transparent background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.aiwa-container {

  margin: 0 auto;
  padding: 18px 18px 12px 18px;
  /* Remove grid display from container to allow normal flow */
  /* display: grid; */ 
  /* grid-template-columns: auto 1fr auto; */
  /* align-items: center; */
}

/* Header specific container to keep header layout */
.aiwa-header .aiwa-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 18px; /* smaller header height */
}

/* Fleet specific container adjustments */
.aiwa-fleet-section .aiwa-container {
  display: block; /* Stack header and grid vertically */
}

/* Logo */
.aiwa-logo {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.aiwa-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* Menu */
.aiwa-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.aiwa-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  position: relative;
  transition: opacity 0.2s ease;
}

.aiwa-menu a:hover {
  opacity: 0.75;
  color: #ffcf48;
}
/* underline */
.aiwa-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: width 0.25s ease;
}

.aiwa-menu a:hover::after {
  width: 100%;
}
/* Controls */
.aiwa-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aiwa-phone {
  font-size: 14px;
  opacity: 0.9;
}

.aiwa-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  overflow: hidden; /* Prevent overflow */
}

.aiwa-icon img {
  width: 80%;
  height: 80%;
  object-fit: cover; /* Ensures image covers the container */
  display: block;
}
/* ===== DROPDOWNS ===== */
.aiwa-dropdown {
  position: relative;
}

.aiwa-dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Arrow */
.aiwa-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Menu */
.aiwa-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;                 /* directly under button */
  background: #fff;
  color: #111;
  border-radius: 4px;
  display: none;
  min-width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 100;
}

/* Items */
.aiwa-dropdown-menu button {
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.aiwa-dropdown-menu button:hover {
  background: #f2f2f2;
}

/* Active */
.aiwa-dropdown.active .aiwa-dropdown-menu {
  display: block;
}

.aiwa-dropdown.active .aiwa-arrow {
  transform: rotate(180deg);
}
/* ===== BURGER ===== */
.aiwa-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.aiwa-mobile-menu {
  display: none;
}

.aiwa-burger span {
  width: 18px;
  height: 2px;
  background: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  color: #fff;
  padding: 10px 10px;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  position: relative;
  padding-bottom: 30px; /* Add some padding for the bottom line */
}

/* Horizontal Golden Line (Solid) */
.hero-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%; /* Center relative to container */
  transform: translateX(-50%); /* Shift back by 50% to be perfectly centered */
  width: 100vw; /* Span full viewport width */
  height: 0.5px; /* Thinner line */
  background: white;
}

.col {
  flex: 1; /* Equal width, fills space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-col {
  position: relative;
  padding-left: 2vh;
}

.right-col {
  align-items: flex-start; /* Prevent button from stretching */
}

/* Vertical Golden Gradient Line */
.left-col::after {
  content: "";
  position: absolute;
  right: -20px; /* Half of gap 40px */
  top: 0;
  height: calc(100% + 30px); /* Extend to touch bottom line */
  width: 0.5px; /* Thinner line */
  background: linear-gradient(to bottom, rgba(184, 134, 11, 0), white);
}

.hero-title {
  font-size: 58px; /* Reduced by ~30% from 82px */
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

/* Indent the second line */
.left-col .hero-title:nth-child(2) {
  padding-left: 120px;
  padding-top: 4px;
}

.hero-flag {
  height: 60px;
  width: auto;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 500px;
  font-style: italic;
  color: #ffcf48;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #ffcf48;
  color: white;
  font-style: italic;
}

.hero-btn svg {
  transition: transform 0.2s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

/* ===== CAR SLIDER ===== */
  .slider-wrapper {
    padding-bottom: 60%; /* Reduced height (was 75%) */
  }

  .aiwa-car-slider {
    width: 97%; /* Reduced width by 3% */
    margin: 10px auto 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
  }

.slider-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
  height: 0; /* Collapse height so padding controls it */
  overflow: hidden; /* Hide overflow for sliding effect */
  border-radius: 12px; /* Rounded corners for the slider container */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1; /* Always visible for sliding */
  transition: transform 0.8s ease-in-out; /* Sliding transition */
  z-index: 1;
  transform: translateX(100%); /* Start off-screen right */
}

.slide.active {
  transform: translateX(0); /* Slide in to center */
  z-index: 2;
}

.slide.prev {
  transform: translateX(-100%); /* Slide out to left */
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px; /* Rounded corners for images */
}

/* Progress Bar */
.slider-progress-container {
  position: absolute; /* Changed from relative to absolute */
  bottom: 30px; /* Position it above the bottom edge of the image */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  width: 90%; /* 90% of screen width */
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0; /* Remove margin */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden;
  z-index: 10; /* Ensure it's on top of the image */
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: #ffcf48; /* Gold color */
  border-radius: 10px;
  transition: width 0.1s linear;
}

/* ===== FLEET SECTION ===== */
.aiwa-fleet-section {
  padding: 20px 0 40px 0; /* Add bottom padding to separate slightly */
  background-color: #f5f5f5; /* Light grey bg like screenshot */
}

.fleet-header {
  margin-bottom: 40px;
  width: 100%; /* Ensure it spans full width */
  text-align: center; /* Center align the heading container */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111;
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ffcf48; /* Gold underline */
  border-radius: 2px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Responsive grid */
  gap: 20px;
}

.car-card {
  background: #fdfbf7; /* Beige-ish white */
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  border-color: #B8860B; /* Gold border on hover */
}

.car-image-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.car-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #666;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-item strong {
  color: #111;
  font-weight: 600;
}

.car-pricing {
  margin-top: auto;
  font-size: 1rem;
  color: #111;
  margin-bottom: 15px;
}

.car-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid #bf9a6e;
  border-radius: 50px;
  color: #bf9a6e;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.car-btn:hover {
  background: #111;
  color: #fff;
}

/* ===== FOOTER ===== */
.aiwa-footer {
  background-color: #1d1e1f;
  color: #fff;
  padding: 80px 0 0 0; /* Padding top only */
  font-size: 16px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px; /* Space before bottom bar */
}

.footer-col {
  flex: 1;
}

/* Left Column */
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu a {
  font-size: 1rem;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-thanks p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.write-us-btn {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.write-us-btn .arrow {
  font-size: 2rem;
  transform: rotate(-45deg); /* Arrow pointing up-right */
  display: inline-block;
  transition: transform 0.2s;
}

.write-us-btn:hover .arrow {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Right Column */
.footer-contacts {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.footer-phone {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.footer-email {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #bf9a6e; /* Gold color for social links */
  font-size: 1rem;
}

.footer-address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.bottom-inner {
  display: flex;
  justify-content: flex-end; /* Align to right generally to match contacts */
  align-items: center;
  gap: 40px;
}

.footer-policies {
  display: flex;
  gap: 30px;
  margin-right: auto; /* Push policies to left or center */
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== STATISTICS SECTION ===== */
.aiwa-stats-wrapper {
  background-color: #f5f5f5; /* Match fleet background to seamlessly continue */
  padding: 0;
  margin: 0;
}

.aiwa-stats-section {
  padding: 0; /* Remove padding here, handled by wrapper if needed */
  background-color: transparent;
}

/* New specific container styling for rounded stats */
.aiwa-stats-section .aiwa-container {
  background-color: #1d1e1f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 80px 4vw; /* Restore padding inside the rounded container */
  color: #fff;
  margin-top: -20px; /* Pull up to cover any potential gap, or just sit flush */
}

.stats-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 800px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px; /* Row gap, Column gap */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
}

/* ===== FAQ SECTION ===== */
.aiwa-faq-section {
  background-color: #1d1e1f; /* Even darker background than stats */
  padding: 0px 0;
  color: #fff;
}

.faq-subtitle {
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
}

.faq-item {
  background: #1d1e1f; /* Card background matching stats section */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ===== FOOTER ===== */
.aiwa-footer {
  background-color: #1d1e1f;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* Stretch to equal height for vertical line */
  position: relative; /* For horizontal line positioning */
}

/* Horizontal White Line (Top) */
.footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.5px;
  background: white;
}

/* Left Column */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 300px;
  position: relative; /* For vertical line positioning */
}

/* Vertical Fading White Line */
.footer-left::after {
  content: "";
  position: absolute;
  right: -30px; /* Half of gap 60px */
  top: -40px; /* Pull up by padding amount to touch horizontal line */
  height: 40px; /* ONLY height of the top segment to touch the line */
  width: 0.5px;
  background: white; /* Solid white for the connection */
}

/* Add a second pseudo-element for the main fading line to avoid layout issues */
.footer-left::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  height: 100%;
  width: 0.5px;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
}
.aiwa-main{
  padding-top: 40px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu a {
  font-size: 16px;
  color: #fff;
  transition: color 0.2s;
}

.footer-menu a:hover {
  color: #ffcf48;
}

.footer-cta {
  margin-top: auto;
  padding-top: 0px;
}

.thanks-text {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.write-us-link {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.write-us-link:hover {
  color: #ffcf48;
}

/* Right Column */
.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-label {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.footer-email {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
  display: block;
}

.footer-social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social-links a {
  color: #bf9a6e; /* Gold color for social text links */
  font-size: 14px;
}

.footer-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  max-width: 300px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.footer-policies a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

/* Mobile Footer */
@media (max-width: 873px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-phone, .footer-email, .write-us-link {
    font-size: 32px; /* Smaller font on mobile */
  }

  /* Hide vertical line on mobile */
  .footer-left::after, .footer-left::before {
    display: none;
  }
}
.how-it-works-section {
  padding: 3vh 0;
  color: #fff;
  background-color: #1d1e1f;
  width: 100vw; /* Ensure section spans full width */
  margin-left: calc(-50vw + 50%); /* Break out of container if needed, though this is a section */
}

/* Specific container for How It Works to be wider */
.how-it-works-section .aiwa-container {
  max-width: 2000px; /* Wider than standard 1400px */
  padding: 0 4vw; /* More breathing room on sides */
}

.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  column-gap: 8vw; /* Responsive large gap */
  row-gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-it-works li {
  display: flex;
  flex-direction: row; /* Back to row to look like the reference */
  align-items: baseline;
  gap: 1.5rem;
  padding: 3rem 0; /* Vertical space */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove manual padding since we use gap now */
.how-it-works li:nth-child(odd) {
  padding-right: 0;
  border-right: none;
}

.how-it-works li:nth-child(even) {
  padding-left: 0;
}

/* Ensure all items have bottom border */
.how-it-works li:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hiw-title {
  font-size: clamp(18px, 1.8vw, 32px); /* Fluid font size relative to VW */
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center; /* Center vertically on the same line */
  gap: 0.8rem;
  flex-shrink: 0;
  min-width: clamp(200px, 20vw, 350px); /* Fluid width for title area */
}

.hiw-num {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.hiw-desc {
  font-size: clamp(14px, 1.1vw, 18px); /* Fluid description size */
  line-height: 1.6;
  color: white;
  margin: 0;
}

/* ===== Responsive (Desktop/Tablet) ===== */
@media (min-width: 768px) and (max-width: 1840px) {
  .hero-title {
    font-size: 3.7vw;
  }
}

/* ===== FOOTER ===== */
.aiwa-footer {
  background-color: #1d1e1f; /* Dark background matching FAQ */
  color: #fff;
  padding: 0px 0 00px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Left column narrower than right */
  gap: 60px;
}

/* Left Column */
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 300px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-thanks p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.write-us-btn {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.write-us-btn .arrow {
  font-size: 2rem;
  transition: transform 0.2s ease;
}

.write-us-btn:hover .arrow {
  transform: translate(5px, -5px);
}

/* Right Column */
.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-label {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.footer-email {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 30px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #bf9a6e; /* Goldish color from fleet button */
  font-size: 0.9rem;
}

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: auto; /* Push bottom content down */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-policies {
  display: flex;
  gap: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 873px) {
  .aiwa-container {
    padding: 10px 15px;
  }

  /* Prevent content from sitting under the fixed header on mobile */
  .aiwa-main {
    padding-top: 85px;
  }

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

  /* Hero Mobile */
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 20px;
  }
  
  /* Hide vertical line on mobile */
  .left-col::after {
    display: none;
  }
  
  .hero-title {
    font-size: 30px;
    line-height: 0.9;
    flex-wrap: wrap;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 !important;
  }

  .hero-desc {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0.75;
    max-width: 95%;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    justify-content: center;
    display: flex;
  }

  .left-col {
    padding-left: 0;
  }

  /* Reset indent on mobile */
  .left-col .hero-title:nth-child(2) {
    padding-left: 0;
    padding-top: 0;
    margin-top: -2px !important;
    font-style: italic;
    color: #ffcf48;
  }
  
  .hiw-num {
    font-size: 10px;
  }

  .hero-flag {
    height: 40px;
  }

  /* How It Works Mobile */
  .how-it-works-section .aiwa-container {
    padding: 0 15px; /* Unified with standard container padding */
  }

  .how-it-works {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 0;
  }

  .how-it-works li {
    flex-direction: column; /* Stack title and desc on mobile */
    align-items: flex-start;
    padding: 2rem 0;
    gap: 0.5rem;
  }
  
  .hiw-title {
    min-width: 0; /* Reset width */
  }


  /* Add bottom border back for item 3 since it's no longer in last row */
  .how-it-works li:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .how-it-works li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ensure last item also has border */
  }

  /* Statistics Mobile */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .stats-title {
    font-size: 2rem;
  }

  /* FAQ Mobile */
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 873px) {
  .aiwa-header {
    padding: 14px 16px; /* smaller mobile header height */
  }

  body {
    padding-top: 0px; /* match mobile header height */
  }

  .aiwa-container {
    padding: 10px 15px;
  }

  /* When mobile menu is open, make the whole viewport solid red (hide site behind)
     Using BODY (not header) avoids backdrop-filter/stacking-context bugs on mobile browsers. */
  body.aiwa-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #911a26;
    z-index: 998; /* under the menu panel (999), above the page */
    pointer-events: none;
  }

  /* Prevent the page behind from scrolling while the menu is open */
  body.aiwa-menu-open {
    overflow: hidden;
  }
  /* Burger Button */
  .aiwa-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1002; /* stay above the menu panel */
  }

  .aiwa-burger span {
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
    transform-origin: center;
  }

  /* Turn burger into an "X" when menu is open */
  .aiwa-header.menu-open .aiwa-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 22px;
  }
  .aiwa-header.menu-open .aiwa-burger span:nth-child(2) {
    opacity: 0;
  }
  .aiwa-header.menu-open .aiwa-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 22px;
  }

  /* Hide normal menu + controls */
  .aiwa-controls {
    display: none;
  }

  .aiwa-menu {
    display: none;
    flex-direction: column;
  }

  /* Mobile Menu Panel */
  .aiwa-mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;       /* Full screen */
    height: 100vh;
    background: #911a26;
    color: #fff;
    /* Extra top padding + iOS safe-area so the close button isn't hidden by the notch/status bar */
    padding: 42px 22px 30px;
    /* Leave room for the absolutely-positioned close button */
    padding-top: calc(84px + env(safe-area-inset-top));
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 999;
    font-size: 20px;   /* Bigger fonts */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aiwa-mobile-menu.active {
    right: 0;
  }

  /* Close Button */
  .mobile-menu-close {
    display: none; /* we use the burger->X toggle instead */
  }

  .mobile-menu-close-label {
    display: none;
  }

  /* Top row: currency + language */
  .mobile-top-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
  }

  .mobile-top-row .aiwa-dropdown-toggle {
    font-size: 20px;
    padding: 8px 12px;
  }

  /* Menu list */
  .mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .mobile-menu-list a {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
  }

  .mobile-menu-list a:hover {
    opacity: 0.7;
  }

  .mobile-spacer {
    flex: 1;
  }

  /* Bottom info */
  .mobile-bottom {
    font-size: 18px;
  }

  .mobile-bottom hr {
    border: 0.5px solid rgba(255,255,255,0.3);
    margin-bottom: 12px;
  }

  .mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  /* Floating WhatsApp */
  .aiwa-floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: shake 2s infinite;
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
  }


}

/* ===== ABOUT PAGE ===== */
.aiwa-about-page {

  color: #fff;
}

.aiwa-about-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
}

.aiwa-about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aiwa-about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 25% 30%, rgba(255, 207, 72, 0.18), transparent 55%),
              linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.85));
}

.aiwa-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.aiwa-about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.aiwa-about-eyebrow {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.aiwa-about-title {
  margin: 14px 0 10px;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.aiwa-about-lead {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

.aiwa-about-hero-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.aiwa-about-ghost {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms ease;
}

.aiwa-about-ghost:hover {
  color: #ffcf48;
}

.aiwa-about-hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.aiwa-about-stat {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17,17,17,0.35);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 16px;
}

.aiwa-about-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffcf48;
  letter-spacing: 0.02em;
}

.aiwa-about-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.aiwa-about-story,
.aiwa-about-values,
.aiwa-about-why,
.aiwa-about-team {
  padding: 72px 0;
}

/* About values: full white section + divider layout (no boxes) */
.aiwa-about-values {
  background: #fff;
  color: #111;
}

.aiwa-about-values .aiwa-about-kicker {
  color: rgba(0,0,0,0.55);
}

.aiwa-about-values .aiwa-about-h2 {
  color: #111;
}

.aiwa-about-story {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.aiwa-about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: center;
}

.aiwa-about-story-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  min-height: 320px;
}

.aiwa-about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aiwa-about-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.aiwa-about-h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 600;
}

.aiwa-about-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.aiwa-about-checks {
  margin-top: 18px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}

.aiwa-about-checks strong {
  color: #fff;
}

.aiwa-about-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Divider-only style for Values section */
.aiwa-about-values .aiwa-about-cards {
  gap: 0;
  margin-top: 22px;
  border-top: 0;
  border-bottom: 0;
}

.aiwa-about-values .aiwa-about-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 26px 22px;
  min-height: 0;
  color: #111;
}

.aiwa-about-values .aiwa-about-card:not(:first-child) {
  border-left: 1px solid rgba(0,0,0,0.12);
}

.aiwa-about-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.aiwa-about-card p {
  margin: 0;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
  font-size: 14px;
}

.aiwa-about-why {
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.aiwa-about-why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.aiwa-about-feature {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 18px;
}

.aiwa-about-feature + .aiwa-about-feature {
  margin-top: 12px;
}

.aiwa-about-feature h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.aiwa-about-feature p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-size: 14px;
}

.aiwa-team-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.aiwa-team-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
}

.aiwa-team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.aiwa-team-meta {
  padding: 16px 16px 18px;
}

.aiwa-team-meta h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.aiwa-team-meta p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 14px;
}

.aiwa-about-cta {
  padding: 56px 0 86px;
}

.aiwa-about-cta-inner {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: radial-gradient(900px 420px at 20% 20%, rgba(255, 207, 72, 0.20), transparent 50%),
              linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  /* give the gradient block breathing room from left/right edges */
  width: calc(100% - 36px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.aiwa-about-cta-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.aiwa-about-cta-copy {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 560px;
}

.aiwa-about-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 873px) {
  .aiwa-about-hero {
    padding: 96px 0 56px;
  }

  .aiwa-about-hero-inner {
    max-width: 100%;
  }

  .aiwa-about-hero-stats {
    grid-template-columns: 1fr;
  }

  .aiwa-about-story-grid,
  .aiwa-about-why-grid {
    grid-template-columns: 1fr;
  }

  .aiwa-about-cards {
    grid-template-columns: 1fr;
  }

  /* Values section: use horizontal dividers when stacked */
  .aiwa-about-values .aiwa-about-cards {
    border-top: 1px solid rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }

  .aiwa-about-values .aiwa-about-card:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  .aiwa-team-grid {
    grid-template-columns: 1fr;
  }

  .aiwa-about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .aiwa-about-cta-inner {
    width: calc(100% - 24px);
  }

  .aiwa-about-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===== CONTACT PAGE ===== */
.aiwa-contact-page {
  background: #f5f5f5;
  color: #111;
}

.aiwa-contact-hero {
  padding: 26px 0 16px;
}

.aiwa-contact-page .aiwa-fleet-crumbs {
  opacity: 1;
  margin-bottom: 10px;
}

.aiwa-contact-page .aiwa-fleet-crumbs a {
  color: rgba(0,0,0,0.65);
}

.aiwa-contact-page .aiwa-fleet-crumbs a:hover {
  color: #e53935;
}

.aiwa-contact-page .aiwa-crumb-sep,
.aiwa-contact-page .aiwa-fleet-crumbs span {
  color: rgba(0,0,0,0.55);
}

.aiwa-contact-title {
  margin: 6px 0 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.aiwa-contact-lead {
  margin: 14px 0 0;
  max-width: 740px;
  color: rgba(0,0,0,0.62);
  line-height: 1.7;
}

.aiwa-contact-body {
  padding: 22px 0 70px;
}

.aiwa-contact-top {
  display: grid;
  /* Prevent overflow on medium widths by letting cards wrap sooner */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.aiwa-contact-info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 22px 22px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0; /* allow text to wrap inside grid/flex */
}

.aiwa-contact-info-label {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
}

.aiwa-contact-info-value {
  font-size: clamp(18px, 2.0vw, 26px);
  font-weight: 500;
  color: #111;
  text-decoration: none;
  line-height: 1.1;
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.aiwa-contact-info-value:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.aiwa-contact-info-text {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* This is the "black box" in your screenshot — now red */
.aiwa-contact-form-card {
  border-radius: 10px;
  padding: 22px 22px;
  min-height: 150px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.08);
  background: #911a26;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  min-width: 0; /* allow long translations to wrap */
}

.aiwa-contact-page .aiwa-contact-form-card:hover,
.aiwa-contact-page .aiwa-contact-form-card:focus-visible {
  background-color: #111;

  transform: translateY(-1px);
}

.aiwa-contact-page .aiwa-contact-form-card:focus-visible {
  outline: 3px solid rgba(255, 207, 72, 0.35);
  outline-offset: 2px;
}

.aiwa-contact-form-title {
  font-size: 16px;
  opacity: 0.9;
}

.aiwa-contact-form-subtitle {
  font-size: clamp(18px, 2.0vw, 26px);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.aiwa-contact-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
}

.aiwa-contact-map iframe {
  width: 100%;
  height: min(56vh, 560px);
  border: 0;
  display: block;
}

@media (max-width: 873px) {
  .aiwa-contact-title {
    font-size: 42px;
  }

  .aiwa-contact-top {
    grid-template-columns: 1fr;
  }

  .aiwa-contact-info-value,
  .aiwa-contact-form-subtitle,
  .aiwa-contact-info-text {
    font-size: 22px;
  }

  .aiwa-contact-map iframe {
    height: 420px;
  }
}

/* ===== CALLBACK MODAL (CONTACT PAGE) ===== */
#aiwa_callback_modal .aiwa-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 640px);
  margin: 0;
  max-height: 88vh;
  overflow: auto;
}

#aiwa_callback_modal .aiwa-modal-panel {
  border-radius: 18px;
}

#aiwa_callback_modal .aiwa-modal-form {
  padding: 28px;
}

#aiwa_callback_modal .aiwa-modal-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.aiwa-callback-subtitle {
  margin: -6px 0 18px;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  font-size: 16px;
}

@media (max-width: 873px) {
  #aiwa_callback_modal .aiwa-modal-dialog {
    width: min(94vw, 520px);
  }

  #aiwa_callback_modal .aiwa-modal-title {
    font-size: 32px;
  }
}

/* ===== TERMS PAGE (minimal, black/red, no rounded blocks) ===== */
.aiwa-terms-page {
  color: #fff;
}

.aiwa-terms-hero {
  padding: 42px 0 28px;
}

.aiwa-terms-crumbs {
  opacity: 0.8;
  margin-bottom: 14px;
}

.aiwa-terms-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.aiwa-terms-lead {
  margin-top: 16px;
  max-width: 860px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.aiwa-terms-body {
  padding: 26px 0 80px;
}

.aiwa-terms-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.aiwa-terms-nav {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.aiwa-terms-nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.aiwa-terms-nav a:hover {
  color: #911a26;
}

.aiwa-terms-content {
  display: grid;
}

.aiwa-terms-section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.aiwa-terms-section:first-child {
  padding-top: 0;
}

.aiwa-terms-section h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 650;
}

.aiwa-terms-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 650;
  color: rgba(255,255,255,0.92);
}

.aiwa-terms-text p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.aiwa-terms-text ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.aiwa-terms-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.aiwa-terms-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.aiwa-terms-columns > div + div {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 22px;
}

.aiwa-terms-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.aiwa-terms-bullets li {
  position: relative;
  padding-left: 18px;
}

.aiwa-terms-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffcf48;
  position: absolute;
  left: 0;
  top: 10px;
}

@media (max-width: 873px) {
  .aiwa-terms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aiwa-terms-nav {
    position: relative;
    top: auto;
    border-right: 0;
    padding-right: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 12px 0;
  }

  .aiwa-terms-columns {
    grid-template-columns: 1fr;
  }

  .aiwa-terms-columns > div + div {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
  }

  .aiwa-terms-section h2 {
    font-size: 28px;
  }
}
