/* Formular rezervare */
form#bookingForm {
    text-align: left;
}

/* Grupare câmpuri */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

/* Input, Select, Textarea */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #fc770b;
    box-shadow: 0 0 4px rgba(252, 119, 11, 0.4);
    outline: none;
}

/* Prefix pentru telefon */
.prefix {
    background: #001b4d;
    color: white;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}

.form-group > div {
    display: flex;
}

.form-group > div input {
    border-radius: 0 5px 5px 0;
    border-left: none;
}

/* Câmp mesaj */
.form-message {
    margin-bottom: 15px;
}

.form-message label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-message textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-message textarea:focus {
    border-color: #fc770b;
    box-shadow: 0 0 4px rgba(252, 119, 11, 0.4);
    outline: none;
}

/* Radio buttons */
.radio-group {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 40px;
    margin-top: 10px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    font-weight: normal;
    color: #333;
    cursor: pointer;
    gap: 8px;
}

.radio-group input[type="radio"] {
    accent-color: #001b4d;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

/* Buton Submit */
button[type="submit"] {
    background: #001b4d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #003366;
}

/* Toast (notificări confirmare/eroare) */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 12px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.service-card .contacts-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.service-card .contacts-columns .col {
  flex: 1;
  min-width: 220px;
}

.service-card .contacts-columns strong {
  display: block;
  margin-bottom: 5px;
  color: #001b4d;
}


/*  CSS pentru soferi */
.drivers-columns {
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }

  .drivers-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .driver-card {
    border: 1px solid #d4d9e3;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    text-align: left;
  }

  .driver-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .driver-header .icon {
    font-size: 22px;
    margin-right: 8px;
  }

  .driver-header strong {
    font-size: 1.1em;
    color: #002b5c;
  }

  .raion {
    margin-bottom: 10px;
    border-left: 3px solid #007bff25;
    padding-left: 10px;
  }

  .raion b {
    color: #004a8f;
    font-size: 0.98em;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
  }

  .raion ul {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
  }

  .raion li {
    margin: 3px 0;
    font-size: 0.93em;
    color: #333;
    line-height: 1.4em;
  }

  .ora {
    font-weight: bold;
    color: #111;
  }

  .orientir {
    font-style: italic;
    color: #555;
  }

  @media (max-width: 900px) {
    .drivers-columns {
      flex-direction: column;
    }
  }
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

/* Hover zoom */
.social-icons a img:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* Click efect (ripple mini-simulat) */
.social-icons a img:active {
    transform: scale(0.95);
    opacity: 0.7;
}