 /* =====================================================
   H V S E C — Schedule Meeting Form
   Dark Cyber / Neon Theme
   ===================================================== */

/* ========== SECTION ========== */
.hvsec-form-section {
  padding: 5rem 1.5rem;
  background: radial-gradient(circle at top, #16292b, #0c1b1d);
}

.hvsec-container {
  max-width: 820px;
  margin: auto;
}

/* ========== TITLE ========== */
.hvsec-section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(56, 249, 215, 0.45);
}

/* ========== FORM CARD ========== */
.hvsec-form {
  display: grid;
  gap: 1.4rem;
  padding: 2.4rem;
  background: rgba(15, 31, 33, 0.88);
  border-radius: 18px;
  border: 1.5px solid rgba(56, 249, 215, 0.45);
  box-shadow: 0 0 35px rgba(56, 249, 215, 0.2);
}

/* ========== FIELDSET ========== */
.hvsec-fieldset {
  position: relative;
  border: none;
  padding: 0;
}

/* ========== LEGEND (FLOATING LABEL) ========== */
.hvsec-legend {
  font-size: 12px;
  font-weight: 600;
  color: #38f9d7;
  padding: 0 6px;
  margin-left: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}

/* Show legend on focus */
.hvsec-fieldset:focus-within .hvsec-legend {
  opacity: 1;
  transform: translateY(0);
}

/* ========== INPUTS / SELECT / TEXTAREA ========== */
.hvsec-input,
.hvsec-select,
.hvsec-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  background: rgba(10, 22, 24, 0.95);
  border: 1px solid rgba(56, 249, 215, 0.35);
  color: #ffffff;
  transition: all 0.25s ease;
}

/* Placeholder */
.hvsec-input::placeholder,
.hvsec-textarea::placeholder {
  color: #ffffff;
  opacity: 0.85;
}

/* Focus */
.hvsec-input:focus,
.hvsec-select:focus,
.hvsec-textarea:focus {
  outline: none;
  border-color: #38f9d7;
  box-shadow: 0 0 14px rgba(56, 249, 215, 0.6);
}

/* Hide placeholder on focus */
.hvsec-input:focus::placeholder,
.hvsec-textarea:focus::placeholder {
  opacity: 0;
}

/* Select arrow fix (dark theme) */
.hvsec-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #38f9d7 50%),
    linear-gradient(135deg, #38f9d7 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* Date & Time icon fix */
.hvsec-input[type="date"],
.hvsec-input[type="time"] {
  color-scheme: dark;
}

/* ========== TEXTAREA ========== */
.hvsec-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ========== BUTTON ========== */
.hvsec-btn {
  margin-top: 1rem;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #38f9d7, #43e97b);
  color: #0f1f21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* Glow effect */
.hvsec-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(56, 249, 215, 0.75);
}
.hvsec-form {
  border: 2px solid rgba(56, 249, 215, 0.7);   /* CLEAR BORDER */
  border-radius: 18px;
  padding: 2.5rem;
  background: rgba(12, 27, 29, 0.92);

  box-shadow:
    0 0 0 1px rgba(56, 249, 215, 0.35),
    0 0 30px rgba(56, 249, 215, 0.35);
}
.hvsec-form:hover {
  border-color: #38f9d7;
  box-shadow:
    0 0 0 1px rgba(56, 249, 215, 0.5),
    0 0 45px rgba(56, 249, 215, 0.6);
}

.hvsec-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px dashed rgba(56, 249, 215, 0.35);
  pointer-events: none;
}

.hvsec-form {
  position: relative;
}



/* ========== ANIMATION ENTRY ========== */
.hvsec-scale-in {
  animation: hvsec-scale-in 0.9s ease both;
}


@keyframes hvsec-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .hvsec-form {
    padding: 1.6rem;
  }

  .hvsec-section-title {
    font-size: 1.9rem;
  }
}
