.contact-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
}
.contact-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.contact-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: #FACC15;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.contact-card__sub {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.contact-field {
  margin-bottom: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 0.45rem;
}

.contact-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  color: #e2e8f0;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: none;
}
.contact-input::-moz-placeholder {
  color: rgba(148, 163, 184, 0.55);
}
.contact-input::placeholder {
  color: rgba(148, 163, 184, 0.55);
}
.contact-input:focus {
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.contact-textarea {
  min-height: 110px;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-submit:hover {
  background: rgb(33.3, 189.9, 91.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.contact-submit:active {
  transform: translateY(0);
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-chip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  padding: 1rem 1.25rem;
}
.contact-info-chip .chip-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact-info-chip .chip-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}
.contact-info-chip .chip-value {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.nav-chips {
  margin-bottom: 1.5rem;
}
.nav-chips__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}
.nav-chips__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nav-chip img {
  border-radius: 3px;
}
.nav-chip:hover {
  transform: translateY(-2px);
}
.nav-chip--google {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
  border-color: rgba(66, 133, 244, 0.3);
}
.nav-chip--google:hover {
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
  border-color: #4285f4;
  color: #4285f4;
}
.nav-chip--waze {
  background: rgba(0, 212, 215, 0.1);
  color: #00d4d7;
  border-color: rgba(0, 212, 215, 0.3);
}
.nav-chip--waze:hover {
  box-shadow: 0 4px 14px rgba(0, 212, 215, 0.3);
  border-color: #00d4d7;
  color: #00d4d7;
}
.nav-chip--apple {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.15);
}
.nav-chip--apple:hover {
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.contact-map {
  width: 100%;
  height: 260px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-map iframe {
  display: block;
}/*# sourceMappingURL=contact.css.map */