/* Modern Contact Form Styles */

.contact-section {
  margin: 0 0 2rem 0;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-section-header h4 {
  color: #ddd !important;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  font-weight: 300 !important;
}

.contact-section-header p {
  color: #e5e5e5 !important;
  font-size: 1.1rem;
  font-weight: 300 !important;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #1a1720 0%, #2E2A39 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-info-card-label {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.contact-info-card-value {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.contact-info-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #2E2A39;
}

.social-links-section {
  text-align: center;
  margin: 3rem 0;
}

.social-links-title {
  font-size: 1.1rem;
  color: #ddd !important;
  margin-bottom: 1.5rem;
  font-weight: 300 !important;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: #2E2A39;
  background: #2E2A39;
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Form Styling */
#contactForm {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#contactForm .row {
  margin-bottom: 1.25rem;
}

#contactForm .small-3.columns {
  display: none;
}

#contactForm .small-9.columns {
  width: 100%;
}

#contactForm label {
  font-weight: 600;
  color: #2E2A39;
  margin-bottom: 0.5rem;
  display: block;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea {
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm input[type="tel"]:focus,
#contactForm textarea:focus {
  border-color: #008cba;
  box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.1);
  outline: none;
}

#contactForm textarea {
  min-height: 150px;
  resize: vertical;
}

#contactForm input[type="submit"] {
  background: linear-gradient(135deg, #1a1720 0%, #2E2A39 100%);
  border: none;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

#contactForm input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 42, 57, 0.4);
}

#contactForm input[type="submit"]:active {
  transform: translateY(0);
}

#contactForm input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#contact-form-messages {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 500;
}

#contact-form-messages:not(:empty) {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

#contact-form-messages.success {
  background: #efe !important;
  border-color: #cfc !important;
  color: #3a3 !important;
}

/* Map Container */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

/* Responsive */
@media screen and (max-width: 640px) {
  #contactForm {
    padding: 1.5rem;
  }

  .contact-info-card-wide {
    grid-column: span 2;
  }

  .contact-info-grid {
    flex-direction: column;
    gap: 1rem;
  }

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

  .map-container {
    min-height: 300px;
  }
}
