/* ================================================
   COMPANY PAGE — Hero Section CSS
   ================================================ */

.company-hero {
  position: relative;
  padding-top: 128px;        /* pt-32 */
  padding-bottom: 96px;      /* pb-24 */
  background-color: #0a1628; /* bg-navy fallback */
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* ---- Background image ---- */
.company-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.30;             /* opacity-30 */
}

/* Gradient overlay on top of image */
.company-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, rgba(46,139,87,0.85) 100%);
  opacity: 0.90;
}

/* ---- Content ---- */
.company-hero__container {
  position: relative;
  z-index: 10;
  max-width: 896px;          /* max-w-4xl */
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- Title ---- */
.company-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.75rem);  /* text-4xl → text-6xl */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* ---- Subtitle ---- */
.company-hero__sub {
  font-size: 1.5rem;          /* text-2xl */
  font-weight: 300;           /* font-light */
  color: #2DA06D;             /* text-primary */
  margin-bottom: 32px;
}

/* ================================================
   Animations — replaces Framer Motion
   ================================================ */

/* Title: y:20 → y:0, opacity:0 → 1 */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Subtitle: opacity:0 → 1, delay 0.2s */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-slide-up {
  animation: slideUp 0.6s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease 0.2s both;
}


/* ================================================
   COMPANY PAGE — Mission Quote CSS
   ================================================ */
.sec-quote {
  padding: 96px 0;
  background: #f7f9fb;
}

.quote-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
@media (min-width: 640px)  { .quote-container { padding: 0 24px; } }
@media (min-width: 1024px) { .quote-container { padding: 0 32px; } }

.quote-text {
  font-size: 1.15rem;
  color: #0a1628;
  line-height: 1.80;
  font-weight: 600;
  font-style: italic;
  position: relative;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
}

/* ================================================
   COMPANY PAGE — Our Mission CSS
   py-24 bg-white border-y
   ================================================ */

.sec-mission {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid #e5e9ef;
  border-bottom: 1px solid #e5e9ef;
}

.mission-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
@media (min-width: 640px)  { .mission-container { padding: 0 24px; } }
@media (min-width: 1024px) { .mission-container { padding: 0 32px; } }

.mission-container h2 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
}

.mission-container p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #6b7280;
  line-height: 1.75;
  font-style: italic;
  position: relative;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.mission-container p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(to bottom, #2DA06D, rgba(45,160,109,0.2));
  border-radius: 2px;
}

/* ================================================
   COMPANY PAGE — Rise Above CSS
   ================================================ */

.sec-rise {
  padding: 96px 0;
  background: #f7f9fb;
}

.sec-rise .sec-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-rise .sec-header h2 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 28px;
}
.sec-rise .sec-header p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 620px;
}

.rise-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .rise-container { padding: 0 24px; } }
@media (min-width: 1024px) { .rise-container { padding: 0 32px; } }

.rise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .rise-grid { grid-template-columns: repeat(3, 1fr); }
}

.rise-card {
  background: #ffffff;
  border: 1px solid #e5e9ef;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.rise-card:hover {
  box-shadow: 0 8px 36px rgba(45,160,109,0.12);
  transform: translateY(-4px);
  border-color: rgba(45,160,109,0.30);
}

.rise-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(45,160,109,0.10);
  color: #2DA06D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.rise-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.rise-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   COMPANY PAGE — Our Values CSS
   ================================================ */

.sec-values {
  padding: 96px 0;
  background: linear-gradient(135deg, #0a1628 0%, rgba(46,139,87,0.85) 100%);
  color: #ffffff;
}

.values-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .values-container { padding: 0 24px; } }
@media (min-width: 1024px) { .values-container { padding: 0 32px; } }

.sec-header .values-heading {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

.values-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.values-num {
  font-size: 3rem;
  font-weight: 800;
  color: #2DA06D;
  opacity: 0.50;
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  font-family: 'Inter', sans-serif;
}

.values-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.values-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.70;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
