/* Contact Section */
.contact {
  background-color: var(--secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--white);
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-details i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 1.2rem;
  width: 20px;
}

.contact-details span {
  color: var(--text-light);
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.hidden {
  display: none;
}

.hidden {
  display: none;
  visibility: hidden;
  height: 0;
  width: 0;
}

.form-error {
  color: #ff6b6b;
  margin-top: 15px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-netlify-recaptcha] {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.instagram-promo {
  text-align: center;
  margin: 30px 0 20px;
}

.instagram-promo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.instagram-promo a i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.instagram-promo a:hover {
  background-color: var(--white);
  color: var(--accent);
  transform: scale(1.05);
}
