.enquire-hero {
  background: radial-gradient(circle at top left, #001933, #000814);
  color: white;
  text-align: center;
  padding: 100px 30px 60px;
  animation: fadeUp 1s ease forwards;
}

.enquire-intro h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.enquire-intro p {
  color: #d1d1d1;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section {
  background: linear-gradient(to bottom right, #eaf5ff, #ffffff);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.contact-form-container {
  max-width: 700px;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.1);
  animation: zoomIn 1s ease forwards;
}

.form-header h2 {
  text-align: center;
  font-size: 2rem;
  color: #0077ff;
  margin-bottom: 10px;
}

.form-header p {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.enquire-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.enquire-form input,
.enquire-form textarea {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.enquire-form input:focus,
.enquire-form textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 8px rgba(0, 119, 255, 0.2);
}

.submit-btn {
  background: linear-gradient(to right, #00f0ff, #0077ff);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background: #005eff;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }

  .enquire-intro h1 {
    font-size: 2.2rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}


/* Overlay */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  text-align: center;
  color: white;
  animation: fadeUp 0.5s ease;
}

/* Loader Ring Animation */
.loader-ring {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-left-color: #00f0ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
