/* -------------------- General Reset -------------------- */
/* ------------------------ ROOT VARIABLES ------------------------ */
:root {
    --bg: var(--glass-bg);
    --surface: #1e293b;
    --card:var(--glass-bg);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --accent: #0b7f9d;
    --accent-hover: #096a83;
    --success: #22c55e;
    --danger: #ef4444;
    --shadow-soft: 0 6px 18px rgba(2, 6, 23, 0.25);
    --shadow-strong: 0 10px 30px rgba(2, 6, 23, 0.45);
    --radius: 14px;
  }
  
  /* ------------------------ GLOBAL ------------------------ */
  
  body {
    --bg: #0a1022;
    --surface: #121a33;
    --card: rgba(18, 26, 51, 0.6);
  
    --glass-bg: rgba(18, 26, 51, 0.55);
    --glass-border: rgba(148, 163, 184, 0.18);
    --glass-blur: blur(14px);
  
    --text: #e5eaf3;
    --muted: #9aa4b2;
  
    --shadow-soft: 0 8px 24px rgba(2, 6, 23, 0.45);
    --shadow-strong: 0 16px 48px rgba(2, 6, 23, 0.75);
  
    background:
        radial-gradient(900px 600px at 15% -10%, rgba(11,127,157,0.10), transparent 60%),
        radial-gradient(700px 500px at 90% 10%, rgba(34,211,238,0.08), transparent 65%),
        linear-gradient(180deg, #0a1022 0%, #070b18 100%);
    color: var(--text);
  }
  
  .navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    box-shadow: var(--shadow-soft);
    height: 30px;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 1000;
  }
  
  .logo {
    width: 40px;
  }
  .hero-header{
    text-align: center;
  }
/* -------------- FORM CARD SECTION -------------- */
.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.form-card {
    background: var(--glass-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    margin-top: 0;
    color: var(--muted);
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #788898;
    margin-bottom: 25px;
}

/* Inputs */
label {
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
    color: var(--muted);
}

input {
    width: 94%;
    padding: 10px;
    margin-bottom: 14px;
    border: 1px solid #d0d7df;
    border-radius: 8px;
    font-size: 15px;
}

input:focus {
    border-color: #096a83;
    outline: none;
}

/* Submit Button */
.submit-btn {
      display: center;
      width:99%;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 30px;
      border: 1px solid var(--accent);
      background:transparent;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: var(--text);
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }

.submit-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Success + Error messages */
.success, .error {
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 15px;
}

.success {
    
    color: muted;
}

.error {
  
    color: #721c24;
}

.hidden {
    display: none;
}

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 10px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

/* INNER WRAP */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* ABOUT */
.footer-about p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  text-align:justify;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom span {
  display: block;
  margin-top: 6px;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .footer-about p {
      margin: auto;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
      padding-left: 0;
  }
}

/* =========================
 RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {
  .footer-container {
      grid-template-columns: 1fr;
      gap: 35px;
  }

  .footer-container p {
      max-width: 100%;
  }
}