body {
  justify-content: flex-start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #ffcc00;
  margin-top: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

.form-group textarea:focus {
  border-color: #ffca00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-icon {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-top: 3px;
}

.info-text strong {
  display: block;
  color: #ffcc00;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.info-text a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.info-text a:hover {
  color: #ffcc00;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
