/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0047ab, #00c6ff);
  color: #fff;
  padding: 50px 20px;
  position: relative;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1920&q=80")
    center/cover;
  opacity: 0.15;
  z-index: 0;
}

.content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.coming-soon p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: #f0f0f0;
  margin: 10px auto;
  max-width: 800px;
}

.next-btn {
  margin-top: 30px;
  padding: 14px 30px;
  border: none;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}

.next-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
}

/* ===== TUTOR SIGNUP SECTION ===== */
.tutor-signup {
  background: linear-gradient(135deg, #0047ab, #00c6ff);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.tutor-signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/learnify-logo.png") center/contain no-repeat;
  opacity: 0.05;
  z-index: 0;
  filter: blur(4px);
}

.form-container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.form-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.form-container p {
  margin-bottom: 25px;
  color: #d8e6ff;
  line-height: 1.6;
}

/* Form grid - adjusts automatically */
.form-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

select option {
  color: #000;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00c6ff;
  background: rgba(255, 255, 255, 0.15);
}

textarea {
  height: 120px;
  resize: none;
  grid-column: span 2;
}

.notify-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.notify-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  box-shadow: 0 6px 25px rgba(0, 114, 255, 0.6);
}

.note {
  font-size: 0.85rem;
  color: #b8d1f5;
  margin-top: 15px;
  text-align: center;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet and below */
@media (max-width: 992px) {
  .form-container {
    padding: 40px 30px;
  }

  .form-group {
    gap: 14px;
  }

  textarea {
    grid-column: 1 / -1;
  }
}

/* Mobile large */
@media (max-width: 768px) {
  .form-container {
    padding: 35px 25px;
  }

  .form-container h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .form-container p {
    text-align: center;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  textarea {
    height: 100px;
  }

  .notify-btn {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .form-container {
    padding: 25px 20px;
  }

  .form-container h2 {
    font-size: 1.4rem;
  }

  input,
  select,
  textarea {
    font-size: 0.9rem;
    padding: 12px;
  }

  .notify-btn {
    font-size: 0.9rem;
    padding: 14px;
  }
}

/* Ultra wide displays */
@media (min-width: 1600px) {
  .form-container {
    max-width: 900px;
    padding: 60px 55px;
  }

  .coming-soon h1 {
    font-size: 3.5rem;
  }

  .coming-soon p {
    font-size: 1.3rem;
  }
}
