/* ==========================================================================
   TOT ENVIRON — EXPLORE & INFO PAGES STYLESHEET (explore.css)
   ========================================================================== */

/* Explore Page Hero */
.explore-hero {
  position: relative;
  background: linear-gradient(135deg, #09121d 0%, #0e3a1c 60%, #16273e 100%);
  color: #ffffff;
  padding: calc(var(--header-height) + 3.5rem) 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.explore-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.explore-hero .tot-breadcrumbs {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.explore-hero .tot-breadcrumbs a {
  color: #35b04a;
}

.explore-hero .tot-breadcrumbs .current {
  color: rgba(255, 255, 255, 0.85);
}

.explore-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .explore-title {
    font-size: 3rem;
  }
}

.explore-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Explore Layout Section */
.explore-section {
  padding: 4.5rem 0 6rem;
  background-color: #ffffff;
}

.explore-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}

.explore-content h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-subtle);
}

.explore-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.explore-content p {
  margin-bottom: 1.5rem;
}

.explore-content ul, .explore-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.explore-content li {
  margin-bottom: 0.5rem;
}

/* Value Cards Grid (About Us) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--color-bg-tint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Job Openings Grid (Careers) */
.job-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.job-card {
  background: var(--color-bg-tint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
  .job-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-card:hover {
  transform: translateX(4px);
  border-color: var(--color-primary);
}

.job-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ISO Certification Cards (QEHS) */
.iso-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .iso-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iso-card {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.iso-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent-cyan);
  margin-bottom: 0.5rem;
}

.iso-card h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.iso-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* News & Articles Cards Grid */
.news-cards-grid, .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .news-cards-grid, .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-card, .case-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover, .case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.news-card h3, .case-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-card p, .case-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.case-metrics-badge {
  background: var(--color-bg-tint);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.case-metrics-badge .c-val {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-primary);
  display: block;
}

.case-metrics-badge .c-lbl {
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* Bottom Service CTA Strip for Explore Pages */
.service-cta-strip {
  background: linear-gradient(135deg, #09121d 0%, #0e3a1c 50%, #158a3a 100%) !important;
  color: #ffffff !important;
  padding: 6rem 1.5rem 7rem !important;
  margin-top: 4rem !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.service-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 10%, rgba(53, 176, 74, 0.2), transparent 70%);
  pointer-events: none;
}

.service-cta-strip .section-shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.service-cta-strip h2 {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.3 !important;
  border: none !important;
  padding: 0 !important;
}

.service-cta-strip p {
  font-size: 1.125rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 650px !important;
  margin: 0 auto 2.5rem !important;
  line-height: 1.75 !important;
}

.service-cta-strip .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}
