/* ========== GLOBAL STYLES ========== */
:root {
  --primary-color: #0ea887; /* Turquoise green from logo */
  --secondary-color: #09a66d; /* Slightly darker green */
  --accent-color: #1e90ff; /* Blue from logo gradient */
  --success-color: #10b981;
  --light-color: #f9fafb;
  --dark-color: #0f0d34; /* Navy blue from logo text */
  --text-color: #334155;
  --text-light-color: #64748b;
  --border-color: #e2e8f0;
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.text-success {
  color: var(--success-color);
}

.bg-light {
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light-color);
}

.rounded-image {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.btn-large {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: rgba(14, 168, 135, 0.05); /* Light green with transparency */
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #187bcd; /* Darker blue */
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--secondary-color);
}

.btn-full {
  width: 100%;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-image {
  height: 80px;
  width: auto;
}

.footer-logo .logo-image {
  height: 50px;
  margin-bottom: 1rem;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.auth-buttons {
  display: none;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-auth {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light-color);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 5rem 0;
}

.process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.process-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.verification {
  background-color: var(--primary-color);
}

.matching {
  background-color: var(--accent-color);
}

.onboarding {
  background-color: var(--success-color);
}

.process-card h3 {
  margin-bottom: 1rem;
}

.process-card p {
  color: var(--text-light-color);
}

/* ========== STATS SECTION ========== */
.stats {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ========== CALL TO ACTION ========== */
.cta {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin-top: 4rem;
}

.cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 4rem 0;
  background-color: var(--light-color);
  text-align: center;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light-color);
}

/* ========== VALUE PROPOSITION ========== */
.value-section {
  padding: 5rem 0;
}

.value-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.value-text h2 {
  margin-bottom: 1.5rem;
}

.value-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light-color);
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.benefits-list i {
  color: var(--success-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.process-step {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 5rem 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-light-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-color);
}

.period {
  color: var(--text-light-color);
  font-size: 1rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-light-color);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.pricing-features i {
  color: var(--success-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* ========== TESTIMONIALS & STORIES ========== */
.testimonials-section, .success-stories {
  padding: 5rem 0;
}

.testimonial-cards, .stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card, .story-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-header, .story-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-img, .story-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4, .story-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p, .story-author p {
  font-size: 0.9rem;
  color: var(--text-light-color);
  margin: 0;
}

.testimonial-text, .story-text {
  color: var(--text-color);
  font-style: italic;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light-color);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light-color);
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--light-color);
  border-radius: 2rem;
}

.badge i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

/* ========== MISSION & VALUES ========== */
.mission-values {
  padding: 5rem 0;
}

.values-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.values-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.values-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.values-list i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.values-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* ========== TEAM SECTION ========== */
.team-section {
  padding: 5rem 0;
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.team-role {
  color: var(--text-light-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-light-color);
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
  padding: 5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.category-card {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  background-color: #f1f5f9;
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-light-color);
  margin: 0;
}

/* ========== FEATURED EMPLOYERS ========== */
.featured-employers {
  padding: 5rem 0;
}

.employers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.employer-logo {
  height: 6rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-color);
  font-weight: 600;
  font-size: 1.25rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 5rem 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.form-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.form-card h2 {
  margin-bottom: 2rem;
}

.form-success {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.form-success h3 {
  color: #047857;
  margin-bottom: 0.5rem;
}

.form-success p {
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.map-container {
  height: 16rem;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-placeholder {
  height: 100%;
  width: 100%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-color);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card p {
  margin-bottom: 0.5rem;
}

.info-card i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.info-card .social-links {
  display: flex;
  gap: 1rem;
}

.info-card .social-links a {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.info-card .social-links a:hover {
  color: var(--secondary-color);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.faq-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-card p {
  color: var(--text-light-color);
  margin: 0;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 3rem;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #cbd5e1;
  font-size: 1.25rem;
}

.social-links a:hover {
  color: white;
}

.subscribe-form {
  display: flex;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  font-family: inherit;
}

.subscribe-form button {
  padding: 0.75rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  background-color: var(--secondary-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

/* ========== RESPONSIVE STYLES ========== */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .process-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .value-content {
    flex-direction: row;
    align-items: center;
  }
  
  .value-content.reverse {
    flex-direction: row-reverse;
  }
  
  .value-text, .value-image {
    width: 50%;
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-cards, .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image, .about-text {
    width: 50%;
  }
  
  .values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .employers-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .contact-content {
    flex-direction: row;
  }
  
  .contact-form-container, .contact-info {
    width: 50%;
  }
  
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
}