/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #F0B90B;
  --primary-hover: #d4a30a;
  --secondary: #1E2026;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.5rem;
  --green: #00E676;
  --green-hover: #00c864;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}
.btn-primary:hover { background: var(--primary-hover); }

.btn-secondary {
  background: #000;
  color: #fff;
}
.btn-secondary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--foreground); }

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-hover); }

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header .container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 2rem;
  height: 2rem;
}

.logo-text .logo-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text .logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .mobile-menu-btn { display: none; }
  .logo img { width: 2.5rem; height: 2.5rem; }
  .logo-text .logo-title { font-size: 1.125rem; }
  .logo-text .logo-subtitle { font-size: 0.875rem; }
}

/* ===== Hero Section ===== */
.hero {
  padding: 3rem 0;
}

.hero .container {
  padding: 0 1rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-stats .separator {
  display: none;
}

.hero-image {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn { width: auto; }
  .hero-stats { flex-direction: row; }
  .hero-stats .separator { display: inline; }
}

@media (min-width: 768px) {
  .hero { padding: 6rem 0; }
  .hero .container { padding: 0 1.5rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-image { height: 400px; }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero h1 { font-size: 3rem; }
}

/* ===== About Section ===== */
.about {
  padding: 4rem 0;
}

.about .container {
  padding: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(240, 185, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.about p {
  max-width: 48rem;
  font-size: 1.125rem;
  color: #4b5563;
}

@media (min-width: 768px) {
  .about { padding: 6rem 0; }
  .about h2 { font-size: 2.25rem; }
}

/* ===== Services Section ===== */
.services {
  background: var(--muted);
  padding: 4rem 0;
}

.services .container {
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .services { padding: 6rem 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Consultation Banner ===== */
.consultation-banner {
  background: var(--primary);
  padding: 4rem 0;
  text-align: center;
}

.consultation-banner h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.consultation-banner p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.consultation-banner .btn {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .consultation-banner h2 { font-size: 2.25rem; }
}

/* ===== Dark Banner ===== */
.dark-banner {
  background: var(--secondary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.dark-banner h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.dark-banner p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-top: 1rem;
}

.dark-banner .btn {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .dark-banner h2 { font-size: 2.25rem; }
}

/* ===== Jobs Section ===== */
.jobs {
  padding: 4rem 0;
  background: #f9fafb;
}

.jobs .container {
  padding: 0 1rem;
}

.jobs h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.search-wrapper {
  max-width: 42rem;
  margin: 0 auto 3rem;
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-wrapper input:focus {
  border-color: var(--primary);
}

.search-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1.25rem;
}

.jobs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .jobs { padding: 6rem 0; }
  .jobs h2 { font-size: 2.25rem; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Job Card ===== */
.job-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.job-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.job-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.job-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.job-card-info .info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card-info .benefits {
  color: var(--primary);
}

/* ===== How to Apply ===== */
.how-to-apply {
  padding: 4rem 0;
  background: #f9fafb;
}

.how-to-apply .container {
  padding: 0 1rem;
}

.how-to-apply h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(240, 185, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.step-card p {
  color: #4b5563;
}

@media (min-width: 768px) {
  .how-to-apply { padding: 6rem 0; }
  .how-to-apply h2 { font-size: 2.25rem; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Contact Section ===== */
.contact {
  background: var(--muted);
  padding: 4rem 0;
}

.contact .container {
  padding: 0 1rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-details .detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details .detail-row .icon {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (min-width: 768px) {
  .contact { padding: 6rem 0; }
  .contact-info h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  color: #fff;
}

.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #374151;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer-nav { display: flex; }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-grid h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-grid p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: #9ca3af;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #fff;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #9ca3af;
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { background: #22c55e; }
.toast.error { background: #ef4444; }

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius);
  max-width: 80vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
}

.modal-close:hover {
  color: #000;
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.modal-jobs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .modal-jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .modal-jobs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .modal-jobs-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Partnership Page Specifics ===== */
.partnership-hero {
  padding: 4rem 0;
}

.partnership-hero .container {
  max-width: 48rem;
  text-align: center;
}

.partnership-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

.partnership-hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .partnership-hero h1 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .partnership-hero { padding: 6rem 0; }
  .partnership-hero h1 { font-size: 3.75rem; }
}

.why-partner {
  padding: 4rem 0;
  background: var(--muted);
}

.why-partner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.why-partner-grid {
  display: grid;
  gap: 1rem;
}

.why-partner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.why-partner-card .emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.why-partner-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-partner-card p {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .why-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.employer-services {
  padding: 4rem 0;
}

.employer-services h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.employer-service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.employer-service-item .emoji {
  font-size: 3rem;
  flex-shrink: 0;
}

.employer-service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.employer-service-item p {
  color: var(--muted-foreground);
}

.industries {
  padding: 4rem 0;
  background: var(--muted);
}

.industries h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.industries-grid {
  display: grid;
  gap: 1rem;
}

.industry-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.industry-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Hidden utility */
.hidden { display: none !important; }
