/* JET Passenger Transport - Unified Stylesheet */
:root {
  --bg-primary: #FFFFFF;
  --color-petrol-dark: #123F4D;
  --color-petrol-card: #174B5B;
  --color-petrol-darker: #0d2e38;
  --text-primary: #111111;
  --text-secondary: #777777;
  --border-color: #DDDDDD;
  --btn-black: #111111;
  --btn-black-hover: #222222;
  --btn-disabled: #D9DEE6;
  --btn-disabled-text: #A0AEC0;
  --input-bg: #F5F6F8;
  --focus-blue: #123F4D;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(18, 63, 77, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 63, 77, 0.12);
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body {
  background-color: #F8F9FA;
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* App Header */
.app-header {
  background: white;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.app-logo img {
  height: 70px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.globe-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-outline-sm {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-sm:hover {
  background: var(--input-bg);
  border-color: #999;
}

/* Page Wrappers */
.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
}

/* Mobile Auth Wrapper (for Login and Register) */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 24px;
}

.auth-card {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .auth-wrapper {
    padding: 0;
  }
  .auth-card {
    border-radius: 0;
    box-shadow: none;
    border: none;
    min-height: 100vh;
    padding: 24px;
  }
}

/* Headers on Mobile Auth Screen */
.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.auth-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0 30px;
}

.auth-logo-center img {
  height: 48px;
  margin-bottom: 8px;
}

.auth-logo-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.auth-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Alert Banner */
.alert-banner {
  background: white;
  border: 1px solid var(--color-petrol-dark);
  border-radius: var(--border-radius);
  padding: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(18, 63, 77, 0.05);
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-petrol-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.alert-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-petrol-dark);
  fill: none;
  stroke-width: 2;
}

.alert-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Section Titles */
.section-header {
  text-align: center;
  margin: 32px 0 24px;
}

.section-title {
  color: var(--color-petrol-dark);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Home Booking Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-card {
  background-color: var(--color-petrol-card);
  color: white;
  height: 180px;
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.booking-card:hover {
  background-color: var(--color-petrol-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.booking-card-icon svg {
  width: 42px;
  height: 42px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.booking-card-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.booking-card-btn {
  background: var(--color-petrol-darker);
  color: white;
  border: none;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-card:hover .booking-card-btn {
  background: var(--text-primary);
}

/* Why us section */
.why-us-card {
  background: white;
  border-radius: var(--border-radius-lg);
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us-title {
  color: var(--color-petrol-dark);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--input-bg);
  padding-bottom: 12px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-petrol-dark);
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-link {
  font-size: 0.8rem;
  color: var(--text-primary);
  text-decoration: underline;
  cursor: pointer;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-size: 0.95rem;
  outline: none;
  color: var(--text-primary);
}

.form-input::placeholder {
  color: #A0AEC0;
}

.form-input:focus {
  border-color: var(--focus-blue);
  box-shadow: 0 0 0 4px rgba(18, 63, 77, 0.1);
}

.input-icon-left {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.input-icon-left svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Phone input splits */
.phone-input-container {
  display: flex;
  gap: 8px;
  height: 56px;
}

.phone-prefix {
  width: 90px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--bg-primary);
  cursor: pointer;
  font-size: 0.9rem;
}

.phone-number-field {
  flex: 1;
}

/* Dropdown list trigger */
.select-trigger {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: white;
}

/* Checkbox Style */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.checkbox-container input {
  display: none;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.checkbox-container input:checked + .custom-checkbox {
  background: var(--color-petrol-dark);
  border-color: var(--color-petrol-dark);
}

.checkbox-container input:checked + .custom-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Large Buttons */
.btn-large-black {
  width: 100%;
  height: 56px;
  background-color: var(--btn-black);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-large-black:hover {
  background-color: var(--btn-black-hover);
  transform: translateY(-1px);
}

.btn-large-disabled {
  width: 100%;
  height: 56px;
  background-color: var(--btn-disabled);
  color: var(--btn-disabled-text);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* Hero Section with Wave */
.hero-section {
  background-color: var(--color-petrol-dark);
  color: white;
  padding: 50px 24px 45px;
  text-align: center;
  position: relative;
  margin: 0 -24px;
}

.hero-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.wave-wrapper {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-wrapper svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 35px;
}

.wave-wrapper .shape-fill {
  fill: #F8F9FA;
}

/* Page 3 & 4 Main Forms */
.form-card {
  background: white;
  border-radius: var(--border-radius-lg);
  margin: -25px auto 40px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

.form-card-header {
  background-color: var(--color-petrol-dark);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.form-card-header svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.form-card-body {
  padding: 28px;
}

.info-alert-gray {
  background-color: var(--input-bg);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.info-alert-gray svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.input-group-row {
  display: flex;
  gap: 8px;
}

.input-group-row .form-input-container {
  flex: 1;
}

.btn-verify {
  background-color: var(--btn-disabled);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0 24px;
  height: 56px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-verify.active {
  background-color: var(--color-petrol-dark);
  color: white;
  border-color: var(--color-petrol-dark);
}

/* Steps Progress on Page 4 */
.steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  direction: ltr; /* keep numeric circles flowing correctly */
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-circle.active {
  background-color: white;
  color: var(--color-petrol-dark);
  border-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--input-bg);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.tab-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

/* Footer Section */
.app-footer {
  background-color: var(--color-petrol-dark);
  color: white;
  padding: 48px 24px;
  margin-top: auto;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-link-group h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-link-group ul {
  list-style: none;
}

.footer-link-group ul li {
  margin-bottom: 8px;
}

.footer-link-group ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-link-group ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-power {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 12px 0 16px;
  font-size: 0.85rem;
}

.power-logo {
  font-weight: 900;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  width: 20px;
  height: 20px;
  display: inline-block;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  color: white;
}

/* Toast Notifications */
.toast-notif {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-petrol-dark);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.toast-notif.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Trip booking time slot select page custom styles */
.date-input-field-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid #DADADA;
  border-radius: 6px;
  height: 52px;
  padding: 0 16px;
  cursor: pointer;
}

.date-input-field-custom .date-text-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: bold;
}

.date-input-field-custom .date-text-wrapper svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

.date-input-field-custom .clear-btn {
  background: #E0E0E0;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111111;
  font-size: 0.75rem;
  font-weight: bold;
}

.time-list-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}

.time-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  height: 74px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.time-card:hover {
  border-color: #A0AEC0;
}

.time-card.selected {
  border-color: var(--color-petrol-dark);
  border-width: 1.5px;
  background-color: rgba(18, 63, 77, 0.02);
  box-shadow: var(--shadow-sm);
}

.time-card-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.time-card-name {
  font-weight: 700;
  color: var(--color-petrol-dark);
  font-size: 1.05rem;
}

.time-card-hours {
  color: var(--text-primary);
  font-size: 0.95rem;
  direction: ltr;
}

.seats-pill {
  background-color: rgba(18, 63, 77, 0.08);
  color: var(--color-petrol-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .time-list-container {
    gap: 24px !important;
  }
  .time-card {
    height: auto !important;
    min-height: 80px;
    padding: 12px 16px !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
    justify-content: center;
  }
  .time-card-right {
    width: 100%;
    justify-content: space-between;
  }
  .seats-pill {
    align-self: flex-end;
  }
}

.btn-trip-footer {
  display: flex;
  justify-content: flex-end; /* aligns Next button to the bottom-left on RTL */
  margin-top: 24px;
}

.btn-next-custom {
  height: 50px;
  width: 110px;
  background-color: #D9DCE5;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: not-allowed;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-next-custom.active {
  background-color: #111111;
  color: white;
  cursor: pointer;
}

/* Passenger & Luggage Page Custom Styles */
.summary-card {
  background-color: #F7F7FA;
  border-radius: 8px;
  height: 80px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.summary-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-title {
  font-size: 0.8rem;
  color: var(--color-petrol-dark);
  font-weight: 700;
}

.summary-date {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-date svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  direction: ltr; /* to display time nicely */
}

.summary-left svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

.counter-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  height: 60px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}

.counter-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-petrol-dark);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr; /* displays + counter - in exact order requested */
}

.counter-btn-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-petrol-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
}

.counter-btn-plus:hover {
  background-color: var(--color-petrol-darker);
}

.counter-btn-minus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
}

.counter-btn-minus:hover {
  background-color: var(--input-bg);
}

.counter-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 20px;
  text-align: center;
}

.fares-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 24px;
}

.fares-header {
  background-color: var(--color-petrol-dark);
  color: white;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 1.05rem;
}

.fares-row {
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.fares-row-border {
  border-bottom: 1px solid #F0F0F0;
}

.fares-row-title {
  color: var(--color-petrol-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.fares-row-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-petrol-dark);
}

.action-buttons-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 8px;
}

.btn-nav-custom {
  width: 110px;
  height: 50px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-nav-next {
  background-color: var(--color-petrol-dark);
  color: white;
  border: none;
}

.btn-nav-next:hover {
  background-color: var(--color-petrol-darker);
}

.btn-nav-back {
  background-color: white;
  color: var(--color-petrol-dark);
  border: 1px solid var(--color-petrol-dark);
}

.btn-nav-back:hover {
  background-color: var(--input-bg);
}

/* Contact Page Verification Styling */
.verified-icon {
  width: 20px;
  height: 20px;
  background-color: #24B45C; /* Beautiful verification green */
  border-radius: 50%;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 16px;
  pointer-events: none;
}

.valid .verified-icon {
  display: flex; /* Show when valid */
}

.verified-icon::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.mail-icon-right {
  position: absolute;
  right: 16px;
  color: var(--text-secondary);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.mail-icon-right svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

.input-verified-email {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

.input-verified-name {
  padding-left: 48px !important;
}

.input-verified-phone {
  padding-left: 48px !important;
}

/* Passenger Details Page Custom Styles */
.info-box-details {
  background-color: #F6F6FA;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.info-box-details svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-petrol-dark);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-box-main {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.info-box-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.passenger-detail-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.passenger-card-header {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #F0F0F0;
  color: var(--color-petrol-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.passenger-card-body {
  padding: 20px;
}

.word-counter-label {
  font-size: 12px;
  color: #888888;
  text-align: left; /* Aligns left under RTL */
  margin-top: 4px;
}

.luggage-select-box {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  height: 72px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.luggage-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Payment Summary Page Custom Styles */
.contact-summary-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.contact-summary-header {
  background-color: #F7F7F8;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--color-petrol-dark);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid #E0E0E0;
}

.contact-summary-row {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #F0F0F0;
}

.contact-summary-row:last-child {
  border-bottom: none;
}

.contact-summary-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-summary-val {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.payment-alert-box {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.payment-alert-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-petrol-dark);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
  flex-shrink: 0;
}

.payment-alert-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.payment-alert-text a {
  color: var(--color-petrol-dark);
  text-decoration: underline;
  font-weight: 700;
}

.payment-buttons-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 8px;
  direction: rtl;
}

.payment-btn-custom {
  height: 56px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-payment-back {
  width: 110px;
  background-color: white;
  color: var(--color-petrol-dark);
  border: 1px solid var(--color-petrol-dark);
}

.btn-payment-back:hover {
  background-color: var(--input-bg);
}

.btn-payment-action {
  flex: 1;
  background-color: var(--color-petrol-dark);
  color: white;
  border: none;
}

.btn-payment-action:hover {
  background-color: var(--color-petrol-darker);
}






