* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

body {
  background: #f5f5f5;
}

.contact {
  padding: 50px;
}

.container {
  display: flex;
  gap: 40px;
}

/* LEFT */
.form-section {
  flex: 1.2;
}

.form-section h1 {
  color: #e30613;
  font-size: 36px;
  margin-bottom: 10px;
}

.form-section p {
  margin-bottom: 25px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #1d2b4f;
}

input, textarea {
  padding: 12px;
  border: 2px solid #d0d5db;
  border-radius: 3px;
  font-size: 14px;
}

textarea {
  height: 140px;
  resize: none;
}

button {
  padding: 14px;
  background: #e30613;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  border-radius: 3px;

}

button:hover {
  background: #c00510;
}

/* RIGHT */
.info-section {
  flex: 1;
}

.info-section h2 {
  color: #e30613;
  margin-bottom: 20px;
}

.card {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item span {
  font-size: 20px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
}

.info-item p {
  color: #e30613;
}

/* MAP */
.map {
  margin-top: 20px;
  background: #f8f9fb;
  padding: 20px;
  border-radius: 5px;
}

.map h3 {
  color: #e30613;
  margin-bottom: 10px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  transform: scale(0.8);
  transition: 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 14px;
  color: #555;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.success-icon {
  font-size: 40px;
  color: #28a745;
}

.error-icon {
  font-size: 40px;
  color: #dc3545;
}

.search input {
  width: 350px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}