/* Contact page specific styles */

.contact-section {
  padding: 64px 0;
  background: #f8fbff;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(14, 41, 89, 0.06);
}

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

.contact-form label {
  display: block;
  font-weight: 600;
  color: #23314a;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6eef8;
  border-radius: 8px;
  background: #fbfdff;
  color: #23314a;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4d7cff;
  box-shadow: 0 6px 18px rgba(77, 124, 255, 0.08);
}

.theme-btn {
  display: inline-block;
  background: linear-gradient(90deg,#1766ff 0%,#3fc1ff 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.theme-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(77,124,255,0.18); }

.contact-info-wrapper {
  background: transparent;
  border-radius: 8px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 8px;
  transition: background .15s ease, transform .15s ease;
}

.contact-info-item + .contact-info-item { margin-top: 12px; }

.contact-info-item .icon {
  min-width: 48px;
  height: 48px;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #1766ff;
  font-size: 20px;
}

.contact-info-item .content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #10203a;
}

.contact-info-item .content p { margin: 0; color: #65758a; font-size: 14px; }

.location-link { display: inline-flex; gap:8px; align-items:center; margin-top:8px; color:#1766ff; font-weight:600; }

.map-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(14,41,89,0.06); }

/* Responsive tweaks */
@media (max-width: 991px) {
  .contact-section { padding: 40px 0; }
  .contact-form-wrapper { padding: 20px; }
}

@media (max-width: 575px) {
  .contact-info-item { padding: 12px; }
  .contact-info-item .icon { min-width: 40px; height: 40px; }
}
