/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: #222;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #08a730;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}
.logo {
  font-size: 20px;
  font-weight: 700;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar ul li a:hover {
  color: #ccece1;
}
.navbar {
  background: #106b04;
  color: white;
  text-align: center;
  padding: 5px 8%;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 1px;
}

.header-title {
  font-size: clamp(18px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.2;
}

.maple-icon {
  width: 45px;
  height: auto;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(8deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ccece1;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(11, 121, 11, 0.8), rgba(0,109,91,0.8)), url("fondo-taxi.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  margin-top: 65px;
}
.hero h1 {
  font-size: clamp(26px, 5vw, 42px);
  margin-bottom: 15px;
}
.hero p {
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 25px;
}
.cta-btn {
  background: #ff7a00;
  color: white;
  padding: 14px 25px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #e86a00;
}

/* ===== FORM ===== */
.form-section {
  background: #ffffff;
  padding: 30px;
  margin: -60px auto 40px auto;
  border-radius: 15px;
  max-width: 900px;
  width: 90%;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}
.form-section h2 {
  text-align: center;
  color: #006d5b;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-row div {
  flex: 1;
  min-width: 200px;
}
form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}
form input, form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fafafa;
  transition: border 0.3s, box-shadow 0.3s;
}
form input:focus, form textarea:focus {
  border: 1px solid #00c292;
  box-shadow: 0px 0px 6px rgba(0, 194, 146, 0.25);
  background: #fff;
}
#addStop {
  background: #00c292;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}
#addStop:hover {
  background: #009975;
}
.botones-envio {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.whatsapp-btn, .sms-btn {
  flex: 1;
  min-width: 200px;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.whatsapp-btn {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.whatsapp-btn:hover {
  background: #1ebc59;
}
.sms-btn {
  background: #007AFF;
  color: white;
}
.sms-btn:hover {
  background: #005FCC;
}
.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* ===== PAYMENT OPTIONS ===== */
.payment-options {
  margin-top: 15px;
}

.payment-options > label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  color: #006d5b;
}

/* Caja completa clickeable */
.payment-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border: 2px solid #d3d3d3;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.3s, background 0.3s;
}

/* Ocultamos el radio nativo y lo estilizamos */
.payment-choice input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #b0b0b0;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

/* Círculo interno cuando está marcado */
.payment-choice input[type="radio"]:checked {
  border-color: #00c292;
}

.payment-choice input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #00c292;
  border-radius: 50%;
}

/* Texto */
.payment-choice span {
  color: #222;
}

/* Hover */
.payment-choice:hover {
  border-color: #00c292;
  background: #f8fdfa;
}
}

/* ===== SERVICES ===== */
.servicios {
  background: #f9fafb;
  padding: 50px 8%;
}
.servicios h2 {
  text-align: center;
  color: #006d5b;
  margin-bottom: 30px;
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.servicio-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.servicio-card:hover {
  transform: translateY(-5px);
}
.servicio-card h3 {
  color: #009975;
  margin-bottom: 10px;
}

/* ===== MAP ===== */
.mapa {
  margin: 40px auto;
  max-width: 900px;
  width: 90%;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.12);
}
.mapa h2 {
  text-align: center;
  color: #006d5b;
  margin-bottom: 15px;
}
#map {
  border-radius: 10px;
  width: 100%;
  height: 400px;
}

/* ===== CONTACT ===== */
.contacto {
  background: #f1f5f9;
  padding: 40px 8%;
}
.contacto h2 {
  text-align: center;
  color: #006d5b;
  margin-bottom: 25px;
}
.contacto-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.contacto-grid div {
  flex: 1;
  min-width: 250px;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }
  .form-row {
    flex-direction: column;
  }
  .botones-envio {
    flex-direction: column;
  }
}
