/* css/hseq.css */
/* ====================================
   HSEQ PAGE SPECIFIC STYLES
   Fully Responsive - Chevron Caspian Theme
   ==================================== */

:root {
  --primary-color: #003E7E;
  --primary-dark: #002B57;
  --primary-light: #0A5BB5;
  --secondary-color: #E31E24;
  --secondary-dark: #B9151A;
  --secondary-light: #FF4A4F;
  --dark-color: #0F172A;
  --dark-alt: #1E293B;
  --gray-dark: #334155;
  --gray-medium: #64748B;
  --gray-light: #CBD5E1;
  --light-color: #F8FAFC;
  --white-color: #FFFFFF;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.15);
  --font-primary: 'Inter', sans-serif;
  --max-width: 1280px;
  --section-padding: clamp(60px, 10vw, 100px) 0;
  --container-padding: 0 24px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* ---------- HERO SECTION ---------- */
.hseq-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.hseq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hseq-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
  animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hseq-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  color: var(--white-color);
  z-index: 3;
  text-align: center;
  padding-top: env(safe-area-inset-top);
}

@media (max-width: 768px) {
  .hseq-hero-content { top: 55%; width: 95%; }
}
@media (max-width: 480px) {
  .hseq-hero-content { top: 50%; width: 92%; }
}

.breadcrumb {
  margin-bottom: clamp(15px, 3vh, 25px);
  margin-top: clamp(10px, 4vh, 50px);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.breadcrumb a:hover { color: var(--secondary-color); }
.breadcrumb span {
  color: rgba(255,255,255,0.8);
  margin: 0 4px;
}
.breadcrumb .current {
  color: var(--secondary-color);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vh, 25px);
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  opacity: 0.95;
  color: var(--white-color);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  padding: 0 10px;
}

.hero-stats {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 25px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 120px;
  flex: 1 0 auto;
  max-width: 180px;
}
@media (max-width: 640px) {
  .hero-stat-item {
    min-width: 100px;
    padding: 10px 12px;
  }
  .hero-stats { gap: 10px; }
}
@media (max-width: 480px) {
  .hero-stat-item {
    min-width: calc(50% - 10px);
    max-width: none;
  }
}

.hero-stat-value {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ---------- General Section Styles ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}
.section-light { background-color: var(--light-color); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}
@media (min-width: 768px) {
  .container { padding: 0 30px; }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}
.section-subtitle {
  display: inline-block;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}
.section-header p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Commitment Block ---------- */
.commitment-block {
  background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
  padding: 60px;
  border-radius: 40px;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  border: 1px solid rgba(227,30,36,0.1);
}
@media (max-width: 768px) {
  .commitment-block {
    padding: 40px 20px;
  }
}
.commitment-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2.5rem;
  transition: all 0.4s ease;
}
.commitment-block:hover .commitment-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--primary-color);
}
.commitment-block h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.commitment-lead {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 40px;
}
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--white-color);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}
.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--secondary-color);
}
.commitment-item i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}
.commitment-item span {
  color: var(--gray-dark);
  font-weight: 500;
  text-align: left;
}

/* ---------- Pillars Tabs ---------- */
.pillars-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.pillar-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}
.pillar-tab i {
  font-size: 1.2rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.pillar-tab:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}
.pillar-tab.active {
  background: var(--secondary-color);
  color: white;
}
.pillar-tab.active i {
  color: white;
}

/* Pillar Content */
.pillar-content {
  display: none;
  background: var(--white-color);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-heavy);
}
.pillar-content.active {
  display: block;
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pillar-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.pillar-text p {
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 25px;
}
.pillar-text h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 25px 0 15px;
}
.pillar-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  height: 100%;
  min-height: 300px;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pillar-image:hover img {
  transform: scale(1.05);
}

/* Health Stats */
.health-stats, .safety-stats {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.health-stat, .safety-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 20px;
  background: var(--light-color);
  border-radius: 16px;
}
.health-stat-value, .safety-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
}
.health-stat-label, .safety-stat-label {
  font-size: 0.8rem;
  color: var(--gray-medium);
  text-transform: uppercase;
}

.measure-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.measure-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-light);
}
.measure-list li i {
  color: var(--secondary-color);
  margin-top: 3px;
}
.measure-list li span {
  color: var(--gray-dark);
}

.environment-badges, .quality-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.environment-badges span, .quality-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
}
.environment-badges i, .quality-badges i {
  color: var(--secondary-color);
}

/* ---------- HSE Rules Grid ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 640px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .rules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rule-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.rule-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}
.rule-icon {
  width: 70px;
  height: 70px;
  background: var(--light-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 2rem;
  transition: all 0.4s ease;
}
.rule-card:hover .rule-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.rule-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.rule-card p {
  color: var(--gray-medium);
  line-height: 1.6;
}

/* ---------- Incident Stats Slider ---------- */
/* ---------- Incident Stats Slider ---------- */

.incidentSwiper {
  width: 100%;
  padding: 10px 10px 50px;
}

.incident-card {
  background: var(--white-color);
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.incident-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
}

.incident-icon {
  width: 60px;
  height: 60px;
  background: var(--light-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--secondary-color);
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.incident-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.incident-stat-large {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.incident-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.incident-trend {
  font-size: 0.75rem;
  padding: 6px 14px;
}

/* ---------- Leadership Section ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.awareness-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white-color);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}
.awareness-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--secondary-color);
}
.awareness-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.awareness-item h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.awareness-item p {
  color: var(--gray-medium);
  margin: 0;
}
.leadership-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}
.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Ethics Grid ---------- */
.ethics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 640px) {
  .ethics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .ethics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ethics-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  height: 100%;
}
.ethics-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}
.ethics-icon {
  width: 70px;
  height: 70px;
  background: var(--light-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 2rem;
  transition: all 0.4s ease;
}
.ethics-card:hover .ethics-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.ethics-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.ethics-quote {
  font-style: italic;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}
.ethics-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.ethics-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  color: var(--gray-dark);
  border-bottom: 1px dashed var(--gray-light);
}
.ethics-list li i {
  color: var(--secondary-color);
  margin-top: 3px;
}

/* ---------- Hazard Card ---------- */
.hazard-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  padding: 60px;
  border-radius: 40px;
  text-align: center;
  box-shadow: var(--shadow-heavy);
}
@media (max-width: 768px) {
  .hazard-card {
    padding: 40px 20px;
  }
}
.hazard-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  transition: all 0.4s ease;
}
.hazard-card:hover .hazard-icon {
  background: var(--secondary-color);
  transform: rotate(10deg) scale(1.1);
}
.hazard-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}
.hazard-lead {
  font-size: 1.2rem;
  opacity: 0.9;
  color: white;
  margin-bottom: 40px;
}
.hazard-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}
.hazard-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 24px;
  border-radius: 50px;
}
.hazard-feature i {
  color: var(--secondary-color);
}
.hazard-note {
  font-size: 1rem;
  opacity: 0.8;
  color: white;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: clamp(60px, 12vw, 120px) 0;
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: clamp(15px, 3vh, 20px);
}
.cta-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-buttons .btn,
  .cta-buttons .cc-btn {
    width: 100%;
    max-width: 280px;
  }
}

.btn {
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  background: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
.cc-btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cc-btn-outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="slide-left"] { transform: translateX(-30px); }
[data-animate="slide-right"] { transform: translateX(30px); }
[data-animate="scale-in"] { transform: scale(0.9); }
@media (min-width: 768px) {
  [data-animate="slide-left"] { transform: translateX(-50px); }
  [data-animate="slide-right"] { transform: translateX(50px); }
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  color: var(--white-color);
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 20px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ---------- Header ---------- */
.site-header.scrolled {
  background: rgba(0, 30, 60, 0.95);
  backdrop-filter: blur(10px);
}



/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-header h2:after { width: 40px; }
  .commitment-grid { gap: 15px; }
  .pillar-tab { width: 100%; justify-content: center; }
  .health-stats, .safety-stats { flex-direction: column; }
  .hazard-features { flex-direction: column; }
  .hazard-feature { width: 100%; }
}