/* General - eliminar antes de confirmar cambios*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #F4F5FF;
}

/* Quoter banner */
.quoter-banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.quoter-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Quoter form */
.quoter-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  margin-top: 110px;
}

.quoter-modal-content {
  background: #F4F5FF;
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quoter-modal-content h1 {
  font-family: 'Rubik One', sans-serif;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.quoter-modal-content p {
  font-family: 'Open Sans Regular', sans-serif;
  text-align: center;
  color: #0F0F0F;
  margin-bottom: 2rem;
}

/* Quoter progress steps - Start */
.quoter-progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.quoter-step {
  width: 30px;
  /* Aumentamos el tamaño */
  height: 30px;
  border-radius: 50%;
  background: #CECECE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A4A4A4;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
}

/* Estilos cuando el paso está activo */
.quoter-step.active {
  background: #859FE7;
  /* Azul claro */
  color: #1a237e;
  /* Azul oscuro */
  box-shadow:
    0 0 0 3.5px #859FE7,
    /* Borde externo azul claro */
    inset 0 0 0 2px #1a237e;
  /* Borde interno azul oscuro */
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* Círculo externo para efecto de fondo */
.quoter-step.active::before {
  content: "";
  position: absolute;
  width: 60px;
  /* Más grande que el botón */
  height: 60px;
  background: #859FE7;
  /* Fondo azul semitransparente */
  border-radius: 50%;
  z-index: -1;
}

/* Línea de conexión entre los pasos */
.quoter-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: #CECECE;
}

/* Línea de progreso cuando está activa */
.quoter-step.active::after {
  background: linear-gradient(to right, #859FE7 60%, #CECECE 40%);
}

.quoter-step.completed {
  background: #1a237e;
  color: #F4F5FF;
}

.quoter-step.completed::after {
  background: #1a237e;
}

/* Quoter progress steps - End */

.buttons-container {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.quote-btn-next {
  background: #0F0F0F;
  color: #F4F5FF;
  padding: 0.5rem;
  border: 1px solid #0F0F0F;
  border-radius: 4px;
  font-family: 'Rubik One', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.quote-btn-next:hover {
  background: #333;
}

.quote-btn-back {
  background: #F4F5FF;
  color: #0F0F0F;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.quote-btn-back:hover {
  background: #0F0F0F;
  color: #F4F5FF
}

/* Quoter select - Start */
.quoter-form {
  display: flex;
  flex-direction: column;
  padding: 0px 60px 0px 60px;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #F4F5FF;
  padding: 0 20px;
  transition: all 0.3s;
  font-size: 16px;
  color: #0F0F0F;
  pointer-events: none;
}

select,
input {
  width: 100%;
  padding: 15px;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 18px;
  appearance: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-container::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: black;
}

#area-code {
  /* margin-right: 10px; */
  font-weight: bold;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 5px 0px 0px 5px;
  background-color: #ddd;
  height: 100%;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#phone-input {
  border-radius: 0px 5px 5px 0px;
}

#phone-label {
  margin-left: 60px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select-container {
  position: relative;
}

.select-container::after {
  content: '\276F';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: black;
  transition: transform 0.2s ease;
}

.select-container.open::after {
  transform: translateY(-50%) rotate(-90deg);
}

.active-label {
  top: 0;
  font-size: 12px;
  color: black;
}

/* Quoter select - End */

/* Quoter process section - Start */
.quoter-process-section {
  background-color: #f5f6fc;
  padding: 0 60px 40px 60px;
  padding-top: 400px;
}

.quoter-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container-quoter-process img {
  max-width: 500px;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.steps-container {
  max-width: 500px;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 30px;
}

.steps-container h2 {
  font-family: 'Rubik One', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #232562;
  background-color: transparent;
  color: #232562;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.step.completed .step-number,
.step.active .step-number {
  background-color: #232562;
  color: white;
}

.step.completed .step-number img,
.step.active .step-number img {
  display: block;
}

.step-number img {
  width: 20px;
  height: 20px;
  display: none;
}

.check-circle {
  width: 20px;
  height: 20px;
  display: block;
}

.step-content h3 {
  font-family: 'Open Sans Regular', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #232562;
}

/* .full-width-line {
  border: none;
  height: 1px;
  background-color: #333;
  width: 100%;
} */

.step-content p {
  margin-top: 8px;
  font-family: 'Open Sans Regular', sans-serif;
  font-size: 14px;
  color: #0F0F0F;
}
/* Quoter process section - End */

/* .quoter-subtitle.hidden {
  visibility: hidden;
} */

/* Quoter conditions section - Start */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: 30px 0px;
}

.condition-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  cursor: pointer;
}

.condition-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.excellent::after {
  background-color: #4CAF50;
}

.good::after {
  background-color: #FFC107;
}

.regular::after {
  background-color: #F44336;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 50%;
  position: relative;
}

.radio-circle.selected {
  border-color: #000;
}

.radio-circle.selected::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.condition-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.required-condition-message {
  color: red;
  font-size: 1rem;
}

/* Quoter conditions section - End */

/* Contact container section - Start */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0px;
}

/* Contact container section - End */

/* Details container section - Start */
.details-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  /* max-width: 1200px; */
  background-color: #F4F5FF;
}

.details-quoter-title {
  font-family: 'Open Sans Regular', sans-serif;
  font-size: 18px;
  /* font-weight: ; */
  margin-bottom: 20px;
  color: #000;
}

.details-quoter-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #2e3192;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.edit-icon {
  margin-left: 10px;
  font-size: 16px;
  color: #666;
}

.car-details,
.personal-details {
  padding: 20px 15px 0px 60px;
}

.divider {
  width: 1px;
  background-color: #0F0F0F;
  margin: 20px 0;
}

.car-specs,
.personal-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 12px;
}

.personal-info {
  grid-template-columns: 1fr 1fr;
}

.spec-group,
.info-group {
  margin-bottom: 15px;
}

.spec-label,
.info-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.spec-value,
.info-value {
  color: #666;
}

/* Details container section - End */

/* Modal styles - Start */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.quote-modal {
  width: 90%;
  max-width: 800px;
  background-color: #F4F5FF;
  border-radius: 4px;
  /* border-color: 2px solid #0F0F0F; */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
.quote-header {
  padding: 15px 40px;
  border-bottom: 1px solid #0F0F0F;
  color: #0F0F0F;
  font-family: 'Open Sans Regular', sans-serif;
  font-size: 12px;
}

.quote-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
}

/* Content */
.quote-content {
  padding: 20px 40px;
}

.offers-header {
  margin-bottom: 25px;
}

.offers-header h3 {
  font-family: 'Rubik One', sans-serif;
  color: #0F0F0F;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.offers-header p {
  font-family: 'Open Sans Regular', sans-serif;
  margin: 0;
  color: #000000;
  font-size: 14px;
}

/* Offers list */
.offers-list {
  display: grid;
  grid-gap: 15px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 15px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  box-shadow: 2px 2px 5px #00000036;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.offer-card:hover,
.offer-card.selected {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.offer-card.selected {
  border: 3px solid #232562;
}

/* Make first card highlighted in second view */
/* #offer-1 {
  border: 2px solid #232562;
} */

.offer-title {
  font-family: 'Open Sans Regular', sans-serif;
  color: #000000;
  font-weight: bold;
  margin-bottom: 30px;
}

.offer-description {
  color: #777;
  font-size: 14px;
}

.offer-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-notification-web, .offer-notification-mobile {
  font-family: 'Open Sans Regular', sans-serif;
  color: #FF0000 !important;
  font-size: 14px;
}

.price-ars-immediate,
.price-ars-exchange,
.price-ars-consignment {
  font-family: 'Rubik One', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-usd {
  font-family: 'Rubik One', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* Footer */
.quote-footer {
  margin-top: 20px;
}

.expiration-note {
  font-size: 12px;
  color: #555;
  margin-bottom: 15px;
}

.footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sell-question {
  font-size: 14px;
  color: #0F0F0F;
}

.contact-text {
  color: #555;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.advisor-btn-web {
  background-color: #232562;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.re-quote-btn {
  background-color: white;
  color: black;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

/* Modal styles - End */

.invalid {
  border: 2px solid red;
}

.progress-dots-container {
  display: none;
}

.phone-validation-modal-container {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  background-color: rgba(0,0,0,0.5);
}

.phone-validation-modal-content {
  flex-direction: column;
  width: 50%;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.validation-modal-header {
  text-align: center;
  margin-bottom: 10px;
}

.phone-validation-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #0F0F0F;
  margin-bottom: 10px;
}

.phone-validation-subtitle {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #0F0F0F;
  margin-bottom: 20px;
}

.phone-validation-policy {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #0F0F0F;
  margin-top: 10px;
  margin-bottom: 20px;
}

.number-input,
.verification,
.result {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#send, #verify {
  background: #0F0F0F;
  color: #F4F5FF;
  padding: 0.5rem;
  border: 1px solid #0F0F0F;
  border-radius: 4px;
  font-family: 'Rubik One', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
  width: 100%;
}

.flag-icon {
  width: 30px;
  height: 20px;

}

.verification-code {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    margin: 0 5px;
}

.loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.correct {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-correct {
    width: 120px;
    height: 120px;
    margin-left: 5px;
    margin: 0 auto 15px;
    display: block;
}

.img-incorrect {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.action-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  font-size: 14px;
}

.action-link {
  color: #0066cc;
  text-decoration: none;
  cursor: pointer;
}

.action-link:hover {
  text-decoration: underline;
}

.success-loader {
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #232562;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.close-modal-btn, .close-quote-modal-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #333;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background-color 0.2s;
  width: 100%;
}

.close-modal-btn:hover {
  color: #000;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  /* Reset some base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  body {
    background-color: white;
  }
  
  label {
    background: white;
  }

  /* Header */
  .quoter-banner {
    display: none;
  }

  /* Mobile header */
  .mobile-header {
    background-color: #000;
    color: white;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    display: none;
  }

  .quoter-modal-container {
    position: relative;
    transform: none;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
    margin-top: 60px;
  }

  .quoter-process-section {
    background-color: #f5f6fc;
    padding: 0 60px 40px 60px;
    padding-top: 400px;
  }

  /* Mobile footer */
  .mobile-footer {
    background-color: black;
    color: white;
    padding: 20px 15px;
    display: none; /* Hidden by default, shown in mobile */
  }

  .footer-logo {
    height: 40px;
    margin-bottom: 20px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
  }

  .footer-section p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .footer-copyright {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
  }

  .quoter-header {
    background-color: #232562;
    color:#232562;
    padding: 1rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  .quoter-header h1 {
    font-family: 'Rubik One', sans-serif;
    text-align: start;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #F4F5FF;
  }

  .quoter-header p {
    font-family: 'Open Sans Regular', sans-serif;
    text-align: start;
    color: #F4F5FF;
    margin-bottom: 2rem;
  }

  .mobile-header,
  .mobile-progress,
  .mobile-footer {
    display: block;
  }

  /* Adjust form container */
  .quoter-modal-container {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    z-index: 1;
  }

  .quoter-modal-content {
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /* Mobile form */
  .quoter-form {
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .select-container::after {
    content: "›";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 20px;
    pointer-events: none;
    color: #666;
  }

  /* Button */
  .quote-btn-next {
    width: 100%;
    background: #0F0F0F;
    color: #F4F5FF;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0px;
  }

  /* Process section */
  .quoter-process-section {
    padding: 0px;
    background-color: #f4f5ff;
    padding-top: 0;
  }

  .quoter-container {
    flex-direction: column;
    padding: 1rem;
  }

  .image-container-quoter-process {
    margin-bottom: 20px;
  }

  .image-container-quoter-process img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .steps-container h2 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
  }

  .step {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    cursor: pointer;
  }

  .step-number {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #a2b4f7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
  }

  .step-content {
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .step-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .step-content p {
    display: none;
  }

  .step-arrow {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s;
  }

  .step.active .step-arrow {
    transform: rotate(90deg);
  }

  .step-details {
    display: none;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 14px;
  }

  .step.active + .step-details {
    display: block;
  }

  .condition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
  }

  .modal-container, .quote-modal, .modal-backdrop {
    display: none;
  }

  .quoter-progress-steps {
    display: none;
  }

  /* Mobile dots */
  .progress-dots-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #04063A;
    width: 100%;
    position: relative;
    border-radius: 15px;
    padding:2px;
    margin-bottom: 0.5rem;
  }

  .progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #232562;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .progress-dot.active {
    background-color: #859FE7;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
  }

  .progress-dot.completed {
    background-color: #859FE7;
  }
  .quote-btn-next.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
  }

  .quote-btn-next.disabled::after {
    margin-left: 5px;
  }
  .quote-btn-back {
    width: 100%;
    padding: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0px;
    background: #F4F5FF;
    color: #0F0F0F;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .quote-btn-back:hover {
    background: #0F0F0F;
    color: #F4F5FF
  }

  /* Offers list */
  .offers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .offer-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  }

  .offer-card:hover,
  .offer-card.selected {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .offer-card.selected {
    border: 3px solid #232562;
  }

  .offer-content {
    margin-bottom: 15px;
  }

  .offer-title {
    font-family: "Open Sans Regular", sans-serif;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .offer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
  }

  .offer-price {
    text-align: right;
    align-self: flex-end;
  }
  
  .offer-notification-app {
    font-family: 'Open Sans Regular', sans-serif;
    color: #FF0000;
    font-size: 14px;
  }

  .price-ars-immediate,
  .price-ars-exchange,
  .price-ars-consignment {
    font-family: "Rubik One", sans-serif;
    font-weight: 400;
    font-size: 18px;
  }

  /* Footer */
  .quote-footer {
    margin-top: 0px;
  }

  .expiration-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
  }

  .footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sell-question {
    font-size: 14px;
    color: #0f0f0f;
  }

  .contact-text {
    color: #232562;
    font-weight: bold;
  }

  .action-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .advisor-btn-mobile {
    background-color: #232562;
    color: white;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 8px;
    width: 100%;
    text-decoration: none;
  }

  .re-quote-btn {
    background-color: white;
    color: black;
    border: 1px solid #e0e0e0;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 8px;
    width: 100%;
  }

  .quote-number h3{
    display: none;
  }

  .step {
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
  }

  .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-weight: bold;
    border: 2px solid #232562;
  }

  .step-content {
    align-items: flex-start;
  }

  .step-content h3,
  .step-content p {
    text-align: left;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 13px;
  }
  
  .phone-validation-modal-container {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    background-color: rgba(0,0,0,0.5);
  }

  .phone-validation-modal-content {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
  }

  .code-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    margin: 0 5px;
  }
}

@media screen and (min-width: 1920px) {
  .quoter-modal-content {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  }

  .quoter-process-section {
    padding-top: 550px;
  }
}