/* Right Career Path Resources - Professional Website Styles */
:root {
  --primary: #0A3C2F;
  --primary-dark: #062820;
  --primary-light: #145C47;
  --accent: #A8E600;
  --accent-dark: #8BC800;
  --accent-soft: #D4F56A;
  --white: #FFFFFF;
  --off-white: #F7FAF8;
  --light: #E8F5F0;
  --gray: #5A6B63;
  --dark-text: #0F1F1A;
  --shadow: 0 10px 40px rgba(10, 60, 47, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 60, 47, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.section {
  padding: 100px 0;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light .section-desc {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.bg-dark .section-tag {
  background: rgba(168, 230, 0, 0.15);
  color: var(--accent);
}

.section-desc {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 12px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 230, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.full-width {
  width: 100%;
}

/* Header / Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,60,47,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text small {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--gray);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--light);
}

.cta-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.cta-nav:hover {
  background: var(--primary-light) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0D4A38 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(168,230,0,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(168,230,0,0.2);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(168,230,0,0.3);
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
  width: 100%;
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  color: var(--dark-text);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  max-width: 280px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.hero-card p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 1.05rem;
}

.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
}

.highlight-box h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.highlight-box p {
  font-style: italic;
  color: var(--dark-text);
  margin: 0;
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  height: 420px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 260px;
}

.fc-icon {
  font-size: 1.8rem;
}

.floating-card strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
}

.floating-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.p-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(10,60,47,0.08);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.s-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.98rem;
}

/* Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.step:hover {
  background: rgba(168,230,0,0.1);
  border-color: var(--accent);
}

.step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Vision Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  color: var(--white);
}

.vm-card.vision {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.vm-card.mission {
  background: linear-gradient(135deg, #0D4A38 0%, var(--primary-dark) 100%);
}

.vm-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.vm-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--light);
  transform: translateY(-4px);
}

.v-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Markets */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.market-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.market-card.primary {
  border-top-color: var(--accent);
}

.m-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: var(--light);
  color: var(--primary);
}

.m-badge.secondary {
  background: #E8F0FE;
  color: #1A56DB;
}

.m-badge.international {
  background: #FEF3C7;
  color: #B45309;
}

.market-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.market-card p {
  color: var(--gray);
  font-size: 0.98rem;
}

.team-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.team-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(6,40,32,0.92));
  color: var(--white);
  padding: 40px 36px 28px;
}

.team-caption h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.team-caption p {
  opacity: 0.9;
  max-width: 600px;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 20px;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-list a {
  color: var(--dark-text);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,60,47,0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #D1DDD7;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10,60,47,0.1);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--accent);
}

.footer-links a {
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.tagline {
  margin-top: 8px;
  font-size: 0.8rem !important;
  color: var(--accent) !important;
  opacity: 0.9 !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img {
    height: 360px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .values-grid,
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .cta-nav {
    margin-left: 0;
    margin-top: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .problems-grid,
  .services-grid,
  .values-grid,
  .markets-grid,
  .process-timeline,
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .floating-card,
  .hero-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .section {
    padding: 70px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-img {
    height: 280px;
  }
}
