* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fb;
  color: #0b1b35;
}

a {
  color: inherit;
}

.topbar {
  background: #071d35;
  color: white;
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.topbar-right,
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-links {
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.25);
}

.social-link {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: .2s;
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  background: #c9a24d;
  border-color: #c9a24d;
  color: #071d35;
}

.social-link.disabled {
  opacity: .45;
}

.navbar {
  background: white;
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}

.logo span {
  color: #c9a24d;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #0b1b35;
  font-weight: bold;
  font-size: 14px;
}

.login-btn {
  border: 1px solid #ccd3df;
  border-radius: 30px;
  padding: 12px 24px;
  text-decoration: none;
  color: #0b1b35;
  white-space: nowrap;
}
.lang-select {
  border: 1px solid #ccd3df;
  border-radius: 20px;
  padding: 8px 10px;
  background: white;
  color: #0b1b35;
  font-weight: bold;
}
html[dir="rtl"] body {
  direction: rtl;
}
html[dir="rtl"] .topbar,
html[dir="rtl"] .navbar,
html[dir="rtl"] .section-title {
  direction: rtl;
}
html[dir="rtl"] .hero {
  background:
    linear-gradient(270deg,rgba(7,29,53,0.92),rgba(7,29,53,0.35)),
    url("img/hero-car.jpg") center/cover;
}
html[dir="rtl"] .print-row,
html[dir="rtl"] .site-form {
  direction: rtl;
}

.hero {
  min-height: 460px;
  background:
    linear-gradient(90deg,rgba(7,29,53,0.92),rgba(7,29,53,0.35)),
    url("img/hero-car.jpg") center/cover;
  color: white;
  padding: 70px 6%;
  position: relative;
}

.hero h1 {
  font-size: 48px;
  max-width: 650px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #d9b45c;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
  line-height: 1.6;
}

.features-mini {
  display: flex;
  gap: 45px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.features-mini div {
  font-size: 14px;
}

.search-box {
  width: 88%;
  margin: -60px auto 30px;
  background: white;
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr) 170px;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  position: relative;
  z-index: 5;
}

.search-item label {
  display: block;
  color: #687388;
  font-size: 13px;
  margin-bottom: 10px;
}

.search-item input,
.search-item select,
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d7dce5;
  padding: 10px 0;
  outline: none;
  color: #0b1b35;
  background: transparent;
}

.search-btn,
.primary-btn {
  background: #071d35;
  color: white;
  border: 0;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  padding: 13px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-strip {
  width: 88%;
  margin: 20px auto;
  background: white;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.info-box {
  padding: 25px;
  border-right: 1px solid #e5e8ef;
}

.info-box:last-child {
  border-right: 0;
}

.info-box h4 {
  margin-bottom: 7px;
}

.info-box p {
  color: #687388;
  font-size: 14px;
}

.section {
  width: 88%;
  margin: 40px auto;
}

.home-vehicles-section {
  margin-bottom: 34px;
}

.home-vehicles-section + .footer {
  margin-top: 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.section-title h2 {
  font-size: 26px;
}

.section-title p {
  color: #687388;
}

.section-title a {
  text-decoration: none;
  color: #071d35;
  font-weight: bold;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.car-card {
  background: white;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: .3s;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-img {
  height: 130px;
  background: linear-gradient(135deg,#e9edf5,#ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #9aa4b5;
  font-weight: bold;
  text-align: center;
}

.car-img.has-photo {
  padding: 0;
  background: #f4f6fa;
  overflow: hidden;
}

.car-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.car-card h3 {
  margin-bottom: 7px;
}

.car-card p {
  color: #687388;
  font-size: 14px;
  margin-bottom: 12px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 14px;
}

.price small {
  font-size: 13px;
  color: #687388;
}

.usd-price {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #1f8a4c;
}

.usd-inline {
  display: inline-block;
  margin-left: 6px;
  color: #1f8a4c;
  font-weight: bold;
  white-space: nowrap;
}

html[dir="rtl"] .usd-inline {
  margin-left: 0;
  margin-right: 6px;
}

.bottom-panels {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.panel {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.panel.dark {
  background: #071d35;
  color: white;
}

.campaign-showcase {
  margin-top: 36px;
}

.campaign-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  color: #071d35;
}

.campaign-showcase-head span {
  color: #071d35;
  font-weight: bold;
  font-size: 26px;
}

.campaign-showcase-head h2 {
  max-width: 560px;
  font-size: 15px;
  font-weight: normal;
  color: #667085;
  text-align: right;
}

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

.campaign-card {
  min-height: 260px;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(7,29,53,.14);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.campaign-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 52%, rgba(255,255,255,.22), transparent 0 17%, transparent 18%),
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 48%);
  pointer-events: none;
}

.campaign-card:after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -16px;
  width: 58%;
  height: 58%;
  background: url("img/hero-car.jpg") center/cover;
  opacity: .32;
  filter: saturate(.9) contrast(1.05);
  border-radius: 140px 0 0 0;
  pointer-events: none;
}

.campaign-card-dark {
  background: linear-gradient(135deg,#06182d,#09213d);
  color: white;
}

.campaign-card-gold {
  background: linear-gradient(135deg,#d9b45c,#f2cf7a);
  color: #06182d;
}

.campaign-card-light {
  background: linear-gradient(135deg,#ffffff,#eef3f9);
  color: #071d35;
}

.campaign-badge {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.campaign-card-gold .campaign-badge {
  background: rgba(7,29,53,.18);
  border-color: transparent;
  color: white;
}

.campaign-card h3 {
  max-width: 62%;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
  color: inherit;
  position: relative;
  z-index: 1;
}

.campaign-card p {
  max-width: 58%;
  color: inherit;
  opacity: .9;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.campaign-action {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #071d35;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.campaign-card-dark .campaign-action {
  background: transparent;
  border-color: #c9a24d;
  color: white;
}

.campaign-card-light .campaign-action {
  background: #071d35;
  color: white;
}

.site-page {
  width: 88%;
  margin: 35px auto;
}

.site-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.site-card h1 {
  margin-bottom: 18px;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.site-form label {
  color: #687388;
  font-size: 13px;
  font-weight: bold;
}

.site-form .wide {
  grid-column: 1 / -1;
}

.form-textarea {
  min-height: 84px;
  resize: vertical;
}

.notice,
.success,
.error {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.notice {
  background: #fff7dc;
  color: #5c4712;
}

.success {
  background: #eaf8ef;
  color: #226b3a;
}

.error {
  background: #ffecec;
  color: #9a1f1f;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 11px;
  border-bottom: 1px solid #e5e8ef;
  text-align: left;
}

th {
  color: #687388;
}

.footer {
  background: #071d35;
  color: white;
  padding: 35px 6%;
  margin-top: 50px;
  text-align: center;
}

.reservation-hero {
  background: linear-gradient(90deg,#071d35,#123b63);
  color: white;
  padding: 55px 6%;
}

.reservation-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.reservation-hero p {
  color: #dce6f2;
}

.reservation-shell {
  width: 88%;
  margin: -35px auto 50px;
}

.reservation-success-shell {
  max-width: 780px;
}

.reservation-form-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

.reservation-wide {
  margin-bottom: 18px;
}

.reservation-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.reservation-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.reservation-step {
  padding: 15px;
  border-radius: 12px;
  background: #f0f3f8;
  font-weight: bold;
  font-size: 14px;
}

.reservation-step.active {
  background: #071d35;
  color: white;
}

.reservation-step span {
  color: #c9a24d;
  margin-right: 6px;
}

.reservation-title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.reservation-title:first-of-type {
  margin-top: 0;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 20px;
}

.reservation-field {
  display: block;
  color: #0b1b35;
  font-size: 14px;
  font-weight: bold;
}

.reservation-field input,
.reservation-field select,
.reservation-field textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #dce1ea;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: white;
  color: #0b1b35;
}

.reservation-field textarea {
  min-height: 90px;
  resize: vertical;
}

.reservation-full {
  grid-column: 1 / -1;
}

.reservation-extra-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-top: 15px;
}

.reservation-extra {
  border: 1px solid #e0e5ee;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  color: #0b1b35;
}

.reservation-extra strong {
  display: block;
  margin-bottom: 5px;
}

.reservation-extra small {
  color: #667085;
}

.reservation-extra input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.reservation-note {
  background: #f3f6fb;
  border-left: 4px solid #c9a24d;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 20px;
  color: #475467;
}

.reservation-note a {
  color: #071d35;
  font-weight: bold;
}

.reservation-summary {
  position: sticky;
  top: 100px;
}

.reservation-car-summary {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 25px;
}

.reservation-car-img {
  width: 140px;
  height: 90px;
  background: linear-gradient(135deg,#e8edf5,#fff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d98aa;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  flex: 0 0 auto;
}

.reservation-car-img.has-photo {
  padding: 0;
  overflow: hidden;
  background: #f4f6fa;
}

.reservation-car-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vehicle-detail-hero {
  background: linear-gradient(90deg,#071d35,#123b63);
  color: white;
  padding: 55px 6%;
}

.vehicle-detail-hero span {
  color: #c9a24d;
  font-weight: bold;
}

.vehicle-detail-hero h1 {
  font-size: 42px;
  margin: 10px 0;
}

.vehicle-detail-hero p {
  color: #dce6f2;
  max-width: 720px;
  line-height: 1.6;
}

.vehicle-detail-container {
  width: 88%;
  margin: 35px auto 60px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 25px;
  align-items: start;
}

.vehicle-detail-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.detail-gallery-main {
  height: 360px;
  border-radius: 18px;
  background: linear-gradient(135deg,#eef3fa,#ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d98aa;
  font-weight: bold;
  margin-bottom: 18px;
  overflow: hidden;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.detail-thumb,
.detail-thumb-placeholder {
  height: 90px;
  border-radius: 14px;
  background: #eef3fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d98aa;
  font-size: 13px;
  border: 1px solid #e1e7f0;
  overflow: hidden;
}

.detail-thumb {
  padding: 0;
  cursor: pointer;
}

.detail-thumb.active {
  border-color: #c9a24d;
  box-shadow: 0 0 0 3px rgba(201,162,77,.18);
}

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

.detail-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 25px;
  gap: 20px;
}

.detail-title-row h2 {
  font-size: 32px;
}

.detail-badge {
  background: #f7edd5;
  color: #8a6418;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 25px;
}

.detail-info-item {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 18px;
}

.detail-info-item span {
  display: block;
  color: #667085;
  font-size: 13px;
  margin-bottom: 6px;
}

.detail-info-item strong {
  font-size: 16px;
}

.detail-section-title {
  font-size: 24px;
  margin: 35px 0 18px;
}

.detail-desc {
  color: #667085;
  line-height: 1.8;
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.detail-feature {
  background: #f4f7fb;
  padding: 16px;
  border-radius: 14px;
  font-size: 14px;
}

.detail-feature:before {
  content: "✓";
  color: #c9a24d;
  margin-right: 8px;
  font-weight: bold;
}

html[dir="rtl"] .detail-feature:before {
  margin-right: 0;
  margin-left: 8px;
}

.detail-extra-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-extra {
  border: 1px solid #e1e7f0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.detail-extra small {
  color: #667085;
}

.detail-price-box {
  position: sticky;
  top: 105px;
}

.detail-price-header {
  border-bottom: 1px solid #edf0f5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.detail-price-header small {
  color: #667085;
}

.detail-price {
  font-size: 38px;
  font-weight: bold;
  margin-top: 8px;
}

.detail-price span,
.detail-price small {
  font-size: 15px;
  color: #667085;
}

.detail-price small {
  display: block;
  color: #1f8a4c;
  margin-top: 4px;
}

.detail-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-form-group {
  margin-bottom: 16px;
}

.detail-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

.detail-form-group input,
.detail-form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #dce1ea;
  border-radius: 12px;
  outline: none;
  background: white;
  color: #0b1b35;
}

.detail-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f5;
  color: #475467;
}

.detail-summary-row.total {
  border-bottom: 0;
  font-size: 22px;
  font-weight: bold;
  color: #071d35;
}

.detail-summary-row small {
  display: block;
  color: #1f8a4c;
  font-size: 13px;
  margin-top: 4px;
}

.detail-reserve-btn {
  width: 100%;
  background: #071d35;
  color: white;
  border: 0;
  padding: 17px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}

.detail-reserve-btn:hover {
  background: #0c2d51;
}

.detail-note {
  margin-top: 18px;
  background: #f3f6fb;
  border-left: 4px solid #c9a24d;
  padding: 15px;
  border-radius: 10px;
  color: #667085;
  line-height: 1.6;
  font-size: 14px;
}

html[dir="rtl"] .detail-note {
  border-left: 0;
  border-right: 4px solid #c9a24d;
}

.detail-similar {
  width: 88%;
  margin: 0 auto 60px;
}

.detail-similar-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.detail-similar-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  text-decoration: none;
}

.detail-similar-img {
  height: 130px;
  background: #eef3fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d98aa;
  margin-bottom: 15px;
  overflow: hidden;
}

.detail-similar-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-similar-card p {
  color: #667085;
  margin: 7px 0;
}

.reservation-car-summary h3 {
  margin-bottom: 6px;
}

.reservation-car-summary p {
  color: #667085;
  font-size: 14px;
  line-height: 1.4;
}

.reservation-badge {
  background: #f7edd5;
  color: #8a6418;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-top: 10px;
}

.reservation-price-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
}

.reservation-price-row strong {
  text-align: right;
}

.reservation-price-row small {
  display: block;
  color: #1f8a4c;
  font-size: 12px;
  margin-top: 4px;
}

.reservation-total {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 0;
  color: #071d35;
}

.reservation-payment {
  margin-top: 20px;
}

.reservation-submit {
  width: 100%;
  background: #071d35;
  color: white;
  border: 0;
  padding: 17px;
  border-radius: 12px;
  margin-top: 25px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}

.reservation-submit:hover {
  background: #0c2d51;
}

.reservation-link-button {
  max-width: 240px;
}

.auth-hero {
  background: linear-gradient(90deg,#071d35,#123b63);
  color: white;
  padding: 55px 6%;
}

.auth-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.auth-hero p {
  color: #dce6f2;
  max-width: 860px;
  line-height: 1.6;
}

.auth-container {
  width: 88%;
  margin: -35px auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.auth-card {
  background: white;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.auth-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.auth-card p {
  color: #667085;
  margin-bottom: 25px;
  line-height: 1.6;
}

.auth-group {
  margin-bottom: 18px;
}

.auth-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}

.auth-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #dce1ea;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.captcha-group {
  background: #f8fafc;
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  padding: 14px;
}

.captcha-group strong {
  color: #8a6418;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.auth-row a {
  color: #071d35;
  font-weight: bold;
  text-decoration: none;
}

.auth-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #475467;
  margin-bottom: 20px;
}

.auth-checkbox input {
  margin-top: 3px;
}

.auth-btn,
.auth-btn-outline {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.auth-btn {
  background: #071d35;
  color: white;
  border: 0;
}

.auth-btn:hover {
  background: #0c2d51;
}

.auth-btn-outline {
  background: white;
  color: #071d35;
  border: 1px solid #ccd3df;
  margin-top: 12px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
  color: #98a2b3;
  font-size: 14px;
}

.auth-divider:before,
.auth-divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e4e7ec;
}

.auth-benefits {
  margin-top: 25px;
  background: #f3f6fb;
  border-left: 4px solid #c9a24d;
  padding: 18px;
  border-radius: 12px;
}

.auth-benefits h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.auth-benefits ul {
  list-style: none;
}

.auth-benefits li {
  margin-bottom: 9px;
  color: #475467;
  font-size: 14px;
}

.auth-benefits li:before {
  content: "✓";
  color: #c9a24d;
  margin-right: 8px;
  font-weight: bold;
}

.corporate-hero {
  background:
    linear-gradient(90deg,rgba(7,29,53,.95),rgba(18,59,99,.84)),
    url("img/corporate-hero.jpg") center/cover;
  color: white;
  padding: 80px 6%;
}

.corporate-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.corporate-hero p {
  max-width: 650px;
  line-height: 1.7;
  color: #dce6f2;
  font-size: 17px;
}

.corporate-section {
  width: 88%;
  margin: 45px auto;
}

.corporate-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 25px;
}

.corporate-card,
.corporate-stat,
.corporate-service {
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.corporate-card {
  padding: 32px;
}

.corporate-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.corporate-card h2 span {
  color: #c9a24d;
}

.corporate-card p {
  color: #667085;
  line-height: 1.8;
  margin-bottom: 15px;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.corporate-stat {
  padding: 28px;
}

.corporate-stat h3 {
  font-size: 34px;
  color: #071d35;
}

.corporate-stat p {
  color: #667085;
  margin-top: 8px;
}

.corporate-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.corporate-service {
  padding: 30px;
}

.corporate-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #071d35;
  color: #c9a24d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 18px;
}

.corporate-service h3 {
  margin-bottom: 12px;
}

.corporate-service p {
  color: #667085;
  line-height: 1.7;
}

.corporate-why {
  background: #071d35;
  color: white;
  border-radius: 22px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.corporate-why p {
  color: #dce6f2;
  line-height: 1.8;
  margin-top: 15px;
}

.corporate-why ul {
  list-style: none;
}

.corporate-why li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.corporate-why li:before {
  content: "✓";
  color: #c9a24d;
  margin-right: 10px;
}

.corporate-form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.corporate-form label {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.corporate-form input,
.corporate-form select,
.corporate-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #dce1ea;
  border-radius: 10px;
  outline: none;
}

.corporate-form textarea {
  height: 110px;
  resize: vertical;
}

.corporate-form strong {
  color: #8a6418;
}

.corporate-form .full {
  grid-column: 1 / -1;
}

.corporate-btn {
  background: #071d35;
  color: white;
  border: 0;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

.contact-hero {
  background:
    linear-gradient(90deg,rgba(6,26,49,.96),rgba(12,46,82,.85)),
    url("img/corporate-hero.jpg") center/cover;
  padding: 90px 6%;
  color: white;
}

.contact-hero span {
  color: #c9a24d;
  font-weight: bold;
}

.contact-hero h1 {
  font-size: 46px;
  margin: 12px 0;
}

.contact-hero p {
  max-width: 720px;
  line-height: 1.8;
  color: #dce6f2;
  font-size: 17px;
}

.contact-container {
  width: 88%;
  margin: -45px auto 60px;
}

.contact-cards,
.contact-departments {
  display: grid;
  gap: 20px;
}

.contact-cards {
  grid-template-columns: repeat(4,1fr);
  margin-bottom: 35px;
}

.contact-departments {
  grid-template-columns: repeat(3,1fr);
  margin-top: 35px;
}

.contact-card,
.contact-panel,
.contact-department,
.contact-map {
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.contact-card {
  padding: 28px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: #071d35;
  color: #c9a24d;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 18px;
}

.contact-card h3,
.contact-side-box h3,
.contact-whatsapp h3,
.contact-department h3 {
  margin-bottom: 8px;
}

.contact-card p,
.contact-desc,
.contact-side-box p,
.contact-department p,
.contact-panel p {
  color: #667085;
  line-height: 1.7;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 25px;
}

.contact-panel {
  padding: 35px;
}

.contact-panel h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 1px solid #dce1ea;
  border-radius: 12px;
  outline: none;
}

.contact-form textarea {
  height: 135px;
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-btn {
  background: #071d35;
  color: white;
  border: 0;
  padding: 17px 32px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

.contact-side-box {
  border-bottom: 1px solid #edf0f5;
  padding: 22px 0;
}

.contact-side-box:first-child {
  padding-top: 0;
}

.contact-whatsapp {
  margin-top: 25px;
  background: #071d35;
  color: white;
  border-radius: 18px;
  padding: 28px;
}

.contact-whatsapp p {
  color: #dce6f2;
  margin-bottom: 18px;
}

.contact-whatsapp a {
  display: inline-block;
  background: #c9a24d;
  color: #071d35;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
}

.contact-map-section {
  margin-top: 35px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 25px;
}

.contact-map {
  padding: 14px;
}

.contact-map iframe {
  width: 100%;
  height: 390px;
  border: 0;
  border-radius: 16px;
}

.contact-department {
  padding: 28px;
}

html[dir="rtl"] .reservation-note {
  border-left: 0;
  border-right: 4px solid #c9a24d;
}

html[dir="rtl"] .reservation-step span {
  margin-right: 0;
  margin-left: 6px;
}

@media(max-width:1100px) {
  .search-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip,
  .bottom-panels,
  .campaign-card-grid,
  .site-form {
    grid-template-columns: 1fr;
  }

  .campaign-showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .campaign-showcase-head h2 {
    text-align: left;
  }

  .campaign-card {
    min-height: 230px;
  }

  .campaign-card h3,
  .campaign-card p {
    max-width: 70%;
  }

  .info-box {
    border-right: 0;
    border-bottom: 1px solid #e5e8ef;
  }

  .reservation-shell {
    width: 94%;
  }

  .reservation-form-layout {
    grid-template-columns: 1fr;
  }

  .reservation-summary {
    position: static;
  }

  .vehicle-detail-container,
  .detail-similar-grid {
    grid-template-columns: 1fr;
  }

  .detail-price-box {
    position: static;
  }

  .detail-info-grid,
  .detail-feature-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .reservation-steps {
    grid-template-columns: repeat(2,1fr);
  }

  .auth-container {
    grid-template-columns: 1fr;
    width: 94%;
  }

  .corporate-grid-2,
  .corporate-why {
    grid-template-columns: 1fr;
  }

  .corporate-stats,
  .corporate-services {
    grid-template-columns: repeat(2,1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(2,1fr);
  }

  .contact-main-grid,
  .contact-map-section,
  .contact-departments {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px) {
  .menu {
    display: none;
  }

  .navbar,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .search-box {
    grid-template-columns: 1fr;
    width: 94%;
  }

  .car-grid {
    grid-template-columns: 1fr;
  }

  .campaign-showcase {
    margin-top: 28px;
  }

  .campaign-showcase-head span {
    font-size: 23px;
  }

  .campaign-card {
    padding: 24px;
    min-height: 250px;
  }

  .campaign-card:after {
    width: 72%;
    height: 48%;
    opacity: .22;
  }

  .campaign-card h3,
  .campaign-card p {
    max-width: 100%;
  }

  .reservation-grid,
  .reservation-extra-list {
    grid-template-columns: 1fr;
  }

  .reservation-full {
    grid-column: 1;
  }

  .reservation-card {
    padding: 22px;
  }

  .reservation-hero h1 {
    font-size: 32px;
  }

  .reservation-car-summary {
    align-items: flex-start;
  }

  .reservation-car-img {
    width: 110px;
  }

  .vehicle-detail-hero h1 {
    font-size: 32px;
  }

  .vehicle-detail-container,
  .detail-similar {
    width: 94%;
  }

  .vehicle-detail-card {
    padding: 22px;
  }

  .detail-gallery-main {
    height: 240px;
  }

  .detail-gallery-thumbs,
  .detail-info-grid,
  .detail-feature-grid,
  .detail-extra-services,
  .detail-form-grid {
    grid-template-columns: 1fr;
  }

  .detail-title-row {
    flex-direction: column;
  }

  .auth-card {
    padding: 24px;
  }

  .auth-hero h1 {
    font-size: 30px;
  }

  .auth-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .corporate-hero h1 {
    font-size: 32px;
  }

  .corporate-section {
    width: 94%;
  }

  .corporate-stats,
  .corporate-services,
  .corporate-form {
    grid-template-columns: 1fr;
  }

  .corporate-form .full {
    grid-column: 1;
  }

  .corporate-card,
  .corporate-why {
    padding: 24px;
  }

  .contact-container {
    width: 94%;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full {
    grid-column: 1;
  }

  .contact-panel {
    padding: 24px;
  }
}
