/* Contact Page */
.contact-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 154, 118, 0.15);
}

.contact-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.contact-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5ebdb8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-icon {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: #5ebdb8;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-item p {
  font-size: 14px;
  color: #5a9997;
  line-height: 1.5;
  margin: 0;
}

.contact-item a {
  color: #5a9997;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #ff8c69;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.submit-contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  border: none;
  border-radius: 25px;
  color: white;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.3);
  min-height: 48px;
}

.submit-contact-btn:active {
  transform: scale(0.98);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: #5a9997;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.social-link:active {
  transform: scale(0.98);
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  color: white;
}

.social-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}