/* HGTS Custom Styles */

/* ===== Card Shadows ===== */
.hgts-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hgts-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* ===== Sticky Header ===== */
.wp-block-group[style*="position:sticky"] {
  z-index: 100 !important;
  background: #FFFFFF;
}

/* ===== Contact Form ===== */
.hgts-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hgts-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hgts-form-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1A1A1A;
}

.hgts-form-field input,
.hgts-form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #4A4A4A;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.hgts-form-field input:focus,
.hgts-form-field textarea:focus {
  outline: none;
  border-color: #4A7C59;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}

.hgts-submit-btn {
  background: #4A7C59;
  color: #FFFFFF;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.hgts-submit-btn:hover {
  background: #2D5A3D;
}

/* ===== FAQ Accordion ===== */
.hgts-faq-item summary {
  cursor: pointer;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hgts-faq-item summary::before {
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  color: #4A7C59;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.hgts-faq-item[open] summary::before {
  content: "−";
}

.hgts-faq-item summary::-webkit-details-marker {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column !important;
  }

  h1.wp-block-heading {
    font-size: 1.75rem !important;
  }
}
