/* ESHAKA CABS - Clean White + Yellow Travel Theme */
:root {
  --bg-body: #FFFFFF;
  --bg-section: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-input: #FFFFFF;
  
  --primary-yellow: #F59E0B;
  --yellow-light: #FBBF24;
  --yellow-hover: #D97706;
  --yellow-badge-bg: #FEF3C7;
  --yellow-badge-text: #92400E;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  
  --border-light: #E2E8F0;
  --border-card: #CBD5E1;
  --border-focus: #F59E0B;
  --border-error: #EF4444;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 70px;
  background-color: var(--bg-body);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography & Badges */
.text-yellow { color: #D97706; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--yellow-badge-bg);
  color: var(--yellow-badge-text);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  outline: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-light), var(--primary-yellow));
  color: #0F172A;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
  transform: translateY(-2px);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border-card);
}

.btn-secondary:hover {
  border-color: var(--primary-yellow);
  color: #D97706;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 76px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 54px;
  max-height: 56px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 42px;
    max-height: 44px;
    max-width: 170px;
  }
}

/* Phone link styling */
.phone-link {
  color: #0284C7;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #0369A1;
}

.footer-logo-img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: #D97706;
}

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

/* Mobile Hamburger Menu */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 900px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 20px;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero-section {
  padding: 50px 0 60px;
  position: relative;
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-content {
  text-align: left;
}

.hero-content .badge {
  display: inline-flex;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
  }
  .hero-content .badge {
    margin: 0 auto 14px;
  }
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 14px 0 16px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .hero-subtitle {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .hero-usecases {
    justify-content: center;
  }
}

.usecase-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  .hero-cta-group {
    justify-content: center;
  }
}

/* Landing Page Hero Booking Card */
.hero-booking-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.25s ease;
}

.hero-booking-card:hover {
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.1), 0 10px 14px -6px rgba(0, 0, 0, 0.04);
}

.booking-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.booking-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.booking-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .hero-booking-card {
    padding: 18px 14px;
    border-radius: var(--radius-md);
  }
}

.hero-visual {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-padding {
  padding: 70px 0;
}

/* Vehicle Fleet Section */
.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.car-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.car-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.car-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.car-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.car-card:hover .car-img-wrapper img {
  transform: scale(1.03);
}

.car-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.car-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.car-desc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.car-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.car-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.car-feature-item svg {
  color: var(--primary-yellow);
  flex-shrink: 0;
}

/* Booking Section & Form Wrapper */
.booking-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px 16px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .booking-wrapper {
    padding: 40px;
  }
}

.form-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  border-bottom: 2px solid var(--yellow-badge-bg);
  padding-bottom: 8px;
}

.form-group-title svg {
  color: var(--primary-yellow);
}

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

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.input-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.input-label span.req {
  color: #D97706;
}

.input-field {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.input-field.error {
  border-color: var(--border-error);
}

.error-text {
  font-size: 0.8rem;
  color: var(--border-error);
  display: none;
  margin-top: 2px;
  font-weight: 600;
}

.error-text.show {
  display: block;
}

/* Radio Cards (Trip Type & Preferred Car) */
.radio-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 540px) {
  .radio-cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radio-card {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.radio-card:hover {
  border-color: var(--primary-yellow);
  background: #FFFBEB;
}

.radio-card.selected {
  border-color: var(--primary-yellow);
  background: #FEF3C7;
}

.radio-card input[type="radio"] {
  accent-color: var(--primary-yellow);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.radio-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.radio-card-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

.radio-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Embedded Special Requirement Container */
.special-requirement-container {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-card);
  width: 100%;
}

.special-requirement-container.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* Dynamic Round Trip Container */
.round-trip-fields {
  display: none;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 10px;
}

@media (min-width: 640px) {
  .round-trip-fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

.round-trip-fields.active {
  display: grid;
  animation: fadeIn 0.25s ease;
}

/* Non-intrusive Passenger Reset Info Notice */
.passenger-info-notice {
  font-size: 0.82rem;
  color: #D97706;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.passenger-info-notice.show {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.field-help-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Features & Services Grid */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .grid-cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Centered 5-card layout alignment for #features section */
@media (min-width: 640px) and (max-width: 991px) {
  #features .grid-cards-3 .feature-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  #features .grid-cards-3 {
    grid-template-columns: repeat(6, 1fr);
  }
  #features .grid-cards-3 .feature-card {
    grid-column: span 2;
  }
  #features .grid-cards-3 .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  #features .grid-cards-3 .feature-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--yellow-badge-bg);
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-card:hover {
  border-color: var(--primary-yellow);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Modal Overlay & Summary */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.summary-header {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
}

.summary-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #B45309;
  margin: 16px 0 10px;
}

.summary-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px stroke var(--border-light);
}

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

.summary-val {
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
  max-width: 60%;
  font-size: 0.92rem;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 500px) {
  .summary-actions {
    flex-direction: row;
  }
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 8px 14px;
  gap: 10px;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Footer (Dark Anchor Footer) */
.site-footer {
  background: #0F172A;
  color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: #94A3B8;
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.85rem;
}
