/* Get In Touch / Contact Page Styles */

/* — Wrapper for form and content — */
.skybriz-contact-wrapper {
  max-width: 700px;
  margin: 40px auto 60px;
  background: rgba(0, 43, 91, 0.7);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  box-shadow: 0 12px 28px rgba(0, 217, 255, 0.15);
  color: #dff6ff;
  font-family: "Segoe UI", Tahoma, sans-serif;
  box-sizing: border-box;
}

/* — Page title — */
.skybriz-contact-section h2 {
  text-align: center;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.25rem;
}

/* — Social icons — */
.skybriz-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.skybriz-social-icons a {
  font-size: 1.6rem;
  color: #dff6ff;
  transition: color 0.3s ease;
}
.skybriz-social-icons a:hover {
  color: #00d4ff;
}

/* — Help blurb above form — */
.skybriz-help-message {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cbe9ff;
  font-weight: 500;
}

/* — Contact form — */
.skybriz-contact-form {
  width: 100%;
}
.skybriz-contact-form input,
.skybriz-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1.5px solid #00b4d8;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #001d3d;
  color: #dff6ff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.skybriz-contact-form input:focus,
.skybriz-contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* — Submit button centered & styled like feedback button — */
.skybriz-contact-form button {
  display: block;
  width: 220px;
  margin: 0 auto;
  padding: 14px 0;
  background: linear-gradient(to right, #3ecf8e, #26b07c);
  color: #001d16;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(62, 207, 142, 0.5);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: inherit;
}
.skybriz-contact-form button:hover {
  background: linear-gradient(to right, #26b07c, #3ecf8e);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(62, 207, 142, 0.7);
}

/* — Post-form messages — */
.skybriz-contact-question,
.skybriz-value-message {
  text-align: center;
  color: #cbe9ff;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* — Contact info & hours container — */
.skybriz-contact-info-hours {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(223, 246, 255, 0.2);
  padding-top: 2rem;
}

/* — Contact details (left column) — */
.skybriz-contact-details {
  flex: 0 1 320px;
  color: #dff6ff;
}
.skybriz-contact-details h3 {
  margin-bottom: 0.6rem;
  color: #00d4ff;
  font-weight: 700;
}
.skybriz-contact-details p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.skybriz-contact-details a {
  color: #00d4ff;
  text-decoration: none;
}
.skybriz-contact-details a:hover {
  text-decoration: underline;
}
/* - Error messages fields*/
.error-message {
  color: #ff4d4d;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: -10px;
  margin-bottom: 10px;
  display: block;
}

/* — Hours (right column) — */
.skybriz-hours {
  flex: 0 1 220px;
  color: #dff6ff;
}
.skybriz-hours h3 {
  margin-bottom: 0.6rem;
  color: #00d4ff;
  font-weight: 700;
}
.skybriz-hours ul {
  list-style: none;
  padding: 0;
}
.skybriz-hours li {
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .skybriz-contact-wrapper {
    padding: 2rem 1.5rem;
    margin: 30px 1rem 40px;
  }
  .skybriz-contact-info-hours {
    gap: 1.5rem;
  }
}
