/* Contact Page Styles */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info h2,
.contact-map h2 {
  color: var(--color-dark-brown);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-orange);
}

.contact-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.contact-item h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-item p {
  color: var(--color-espresso);
  line-height: 1.8;
  margin: 0;
}

.contact-item a {
  color: var(--color-dark-brown);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-orange);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: inline-block;
  background: var(--color-amber);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-orange);
  transform: translateX(5px);
}

.map-container {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.map-info p {
  color: var(--color-espresso);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.map-info strong {
  color: var(--color-dark-brown);
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-item {
    padding: 1.5rem;
  }

  .map-container iframe {
    height: 350px;
  }
}
