/* Contact Container */
.contact-container {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 30px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Contact Info Styles */
.contact-info h1 {
  font-family: "CanvaSans", sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 30px;
}

.info-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.icon {
  color: #d4a574; /* Muted orange/brown accent */
  margin-right: 10px;
  font-size: 18px;
}

/* Contact Form Styles */
.contact-form {
  padding-top: 20px;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  font-family: "CanvaSans", sans-serif;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.form-group.half-width {
  flex: 1;
  margin-bottom: 0;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  padding-right: 30px;
  cursor: pointer;
}

.form-select:focus {
  border-bottom-color: #d4a574;
}

/* Option styling */
.form-select option {
  background-color: white;
  color: #333;
  padding: 10px;
}

.form-input:focus {
  border-bottom-color: #d4a574;
}

.form-input::placeholder {
  color: #999;
}

.send-btn {
  background: none;
  border: 1px solid #f54078;
  color: #f54078;
  font-family: "CanvaSans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.send-btn:hover {
  background: #f54078;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 64, 120, 0.2);
}
.map {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
}
.map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.3);
}
/* Map Section */
.map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #e8e8e1; /* Muted earthy color */
  padding: 60px 0;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  height: 400px;
  background-color: #d4d4c9; /* Muted map background */
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a7d;
  font-size: 16px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav {
    gap: 20px;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h1 {
    font-size: 32px;
    text-align: center;
  }

  .map-wrapper {
    height: 300px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group.half-width {
    margin-bottom: 30px;
  }

  .form-row .form-group.half-width:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px;
  }

  .logo {
    font-size: 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-info h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .info-item p {
    font-size: 14px;
  }

  .map-wrapper {
    height: 250px;
  }
  .form-select {
    background-position: right 5px center;
    background-size: 10px;
    padding-right: 25px;
  }
}
