* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    sans-serif;
}

body {
  background: #0f8dc9; /* primary blue background */
  color: #ffffff; /* white text base */
  overflow-x: hidden;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0e7bb0;
}
::-webkit-scrollbar-thumb {
  background: #6dc32b; /* green leaf accent */
  border-radius: 10px;
}

/* HEADER with glassmorphism on blue */
header {
  position: sticky;
  top: 0;
  background: rgba(15, 141, 201, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo {
  font-weight: 800;
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  cursor: pointer;
}

.logoID {
  width: 8%;
}

.logo span {
  font-weight: 400;
  color: #ffffff80;
  background: none;
  -webkit-background-clip: unset;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

nav a {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: 0.2s;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #6dc32b;
  transition: width 0.25s ease;
}

nav a:hover::after,
nav a.active-nav::after {
  width: 100%;
}

nav a:hover {
  color: #6dc32b;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #ffffff;
}

/* PAGE SYSTEM */
.page {
  display: none;
  animation: fadeSlide 0.5s ease forwards;
}

.active-page {
  display: block;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reusable containers with glass effect */
.hero-section,
.values-section,
.career-highlights,
.apply-container,
.form-card,
.card,
.value-card,
.highlight-item,
.faq-item,
.modal-card,
.about-card,
.privacy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* HERO + Homepage rich content */
.hero-section {
  background: rgba(15, 141, 201, 0.5);
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.hero-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.hero-text {
  flex: 1.2;
  min-width: 260px;
}

.hero-badge {
  background: rgba(109, 195, 43, 0.2);
  color: #6dc32b;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(109, 195, 43, 0.4);
}

.hero-text h1 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-text p {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #6dc32b;
  border: none;
  padding: 0.85rem 1.8rem;
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 600;
  border-radius: 60px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 6px 14px rgba(109, 195, 43, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #5aa824;
  transform: scale(1.02);
}

.hero-stats {
  background: rgba(255, 255, 255, 0.12);
  padding: clamp(1rem, 4vw, 1.8rem);
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  flex: 0.9;
  min-width: 240px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.stat-number {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: #6dc32b;
}

/* values & highlights */
.values-section,
.career-highlights {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  max-width: 1300px;
  margin: 2rem auto;
  background: rgba(15, 141, 201, 0.3);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.value-card,
.highlight-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1.5rem;
  width: clamp(200px, 30vw, 240px);
  text-align: center;
  transition: 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover,
.highlight-item:hover {
  transform: translateY(-6px);
  background: rgba(109, 195, 43, 0.2);
  border-color: #6dc32b;
}

.highlight-item {
  width: clamp(220px, 32vw, 260px);
}

/* FORM PAGE */
.apply-container {
  background: rgba(15, 141, 201, 0.4);
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
  min-height: 85vh;
}

.form-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.full-width {
  grid-column: 1 / -1;
}

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

.input-field label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
}

.input-field input,
.input-field select {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.9);
  color: #0f8dc9;
  font-weight: 500;
  width: 100%;
}

.input-field input:focus {
  border-color: #6dc32b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(109, 195, 43, 0.3);
}

.file-zone {
  border: 1.5px dashed rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}
.file-zone input {
  background: transparent;
  color: #0f8dc9;
}
.file-zone small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.7rem;
}

.submit-btn {
  width: 100%;
  background: #6dc32b;
  padding: 1rem;
  border: none;
  border-radius: 3rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 1rem;
  font-size: 1rem;
}

.submit-btn:hover {
  background: #5aa824;
  transform: scale(0.99);
}

/* THANK YOU MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.modal-card {
  background: rgba(15, 141, 201, 0.95);
  backdrop-filter: blur(12px);
  max-width: 450px;
  width: 90%;
  padding: 2rem;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid rgba(109, 195, 43, 0.6);
}

.modal-card h3 {
  margin: 1rem 0;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: white;
}

.close-modal {
  background: #6dc32b;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  color: white;
  cursor: pointer;
  margin-top: 1rem;
  font-weight: 600;
}

/* FAQ / Support */
.faq-list {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.1s;
  backdrop-filter: blur(4px);
}
.faq-item strong {
  color: #6dc32b;
}
.faq-answer {
  display: none;
  margin-top: 0.8rem;
  padding-left: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

footer {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #6dc32b;
  color: #0f8dc9;
  font-weight: bold;
  padding: 0.7rem 1.5rem;
  border-radius: 60px;
  z-index: 2100;
  white-space: nowrap;
  max-width: 90vw;
  white-space: normal;
  text-align: center;
}
.hidden {
  display: none;
}

/* about & privacy cards */
.about-card,
.privacy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  margin: 2rem auto;
  max-width: 1100px;
}

/* responsive fixes */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .logoID {
    width: 10%;
  }
}

nav {
  position: absolute;
  top: 70px;
  right: 1rem;
  background: #0f8dc9;
  flex-direction: column;
  width: 200px;
  padding: 1rem;
  display: none;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  gap: 1rem;
  z-index: 999;
}
nav.show {
  display: flex;
}
.hamburger {
  display: block;
}
.hero-grid {
  flex-direction: column;
  text-align: center;
}
.hero-text p {
  margin-left: auto;
  margin-right: auto;
}
.form-grid {
  grid-template-columns: 1fr;
}
.full-width {
  grid-column: span 1;
}
.stat-item {
  min-width: 70px;
}

@media (max-width: 480px) {
  .value-card,
  .highlight-item {
    width: 100%;
    max-width: 280px;
  }
  .values-grid,
  .career-highlights > div {
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
  }
  .toast-msg {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .logoID {
    width: 5%;
  }
}
