/* css/who-are-we.css */
/* ====================================
   WHO WE ARE PAGE SPECIFIC STYLES
   Fully Responsive - Following About Pattern
   ==================================== */

: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: #16A34A;
  --warning-color: #F59E0B;
  --danger-color: #DC2626;
  --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);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --max-width: 1280px;
  --section-padding: clamp(60px, 10vw, 100px) 0;
  --container-padding: 0 24px;
}

/* ---------- HERO SECTION (Cinematic with Image) ---------- */
.who-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.who-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.who-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;
}

.who-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  z-index: 3;
  text-align: center;
  padding-top: env(safe-area-inset-top);
}

/* Responsive Hero Content */
@media (max-width: 768px) {
  .who-hero-content {
    width: 95%;
    top: 55%;
  }
}
@media (max-width: 480px) {
  .who-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;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.breadcrumb a:hover { color: var(--secondary-color); }
.breadcrumb span {
  color: white;
  margin: 0 4px;
}
.breadcrumb .current {
  color: var(--secondary-color);
  font-weight: 500;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vh, 25px);
  color: white;

}
@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: white;
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;

  padding: 0 10px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.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;
    flex: 1 1 40%;
  }
}

.hero-stat-value {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  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;
}

/* ---------- Content Block ---------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}
@media (min-width: 992px) {
  .content-block { grid-template-columns: 1fr 1fr; }
}

.content-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  height: 100%;
  min-height: 300px;
}
@media (max-width: 768px) {
  .content-image { min-height: 250px; }
}
.img-placeholder {
  width: 100%;
  height: 100%;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-placeholder:hover img { transform: scale(1.05); }

.content-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.content-text .lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.content-text p {
  margin-bottom: 20px;
  color: var(--gray-dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.heritage-features {
  display: flex;
  gap: clamp(15px, 3vw, 25px);
  flex-wrap: wrap;
  margin-top: 30px;
}
.heritage-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
}
.heritage-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary-color);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .heritage-feature svg { width: 24px; height: 24px; }
}

/* ---------- Operations Grid ---------- */
.operations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .operations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.operation-card {
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.operation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.operation-image {
  height: 200px;
  overflow: hidden;
}
.operation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.operation-card:hover .operation-image img {
  transform: scale(1.1);
}

.operation-content {
  padding: 25px 20px 30px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.operation-icon {
  width: 60px;
  height: 60px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 20px;
  color: var(--secondary-color);
  border: 4px solid var(--white-color);
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
}
.operation-card:hover .operation-icon {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: rotate(360deg);
}
.operation-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}
.operation-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}
.operation-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex: 1;
}
.operation-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}
.operation-link span {
  transition: transform 0.3s ease;
}
.operation-link:hover {
  color: var(--primary-color);
}
.operation-link:hover span {
  transform: translateX(5px);
}

/* Products Showcase */
/* ---------- Enhanced Products Showcase ---------- */
.products-showcase {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.products-showcase::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(227,30,36,0.03) 0%, rgba(227,30,36,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.products-showcase::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,62,126,0.03) 0%, rgba(0,62,126,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.products-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.products-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: var(--white-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(227,30,36,0.2);
}

.products-header h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.products-header p {
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-showcase {
    padding: 30px 20px;
  }
}

/* Featured Product Card */
.product-feature-card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(227,30,36,0.1);
}

.product-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--secondary-color);
}

.product-feature-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.product-feature-icon {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.3);
  z-index: 1;
}

.product-feature-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--white-color);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.product-stats-mini {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 30px;
  color: var(--white-color);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1;
}

.product-stat {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-stat-label {
  font-size: 0.7rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-feature-content {
  padding: 25px;
  background: var(--white-color);
}

.product-feature-content h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-feature-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-specs li {
  display: flex;
  flex-direction: column;
  background: var(--light-color);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  flex: 1 1 auto;
  min-width: 100px;
}

.product-specs li span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-learn-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.product-learn-more span {
  transition: transform 0.3s ease;
}

.product-learn-more:hover {
  color: var(--primary-color);
}

.product-learn-more:hover span {
  transform: translateX(5px);
}

/* Mini Products Grid */
.products-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .products-mini-grid {
    grid-template-columns: 1fr;
  }
}

.product-mini-card {
  background: var(--white-color);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.product-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}

.product-mini-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  color: var(--secondary-color);
}

.product-mini-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.product-mini-content {
  flex: 1;
}

.product-mini-content h5 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.product-mini-stats {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
  background: var(--light-color);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
}

.mini-stat {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.mini-stat-label {
  font-size: 0.7rem;
  color: var(--gray-medium);
}

.product-mini-content p {
  color: var(--gray-medium);
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0;
}

/* Quality Badges */
.quality-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
  position: relative;
  z-index: 1;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  background: var(--white-color);
  border-radius: 40px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.quality-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--secondary-color);
}

.quality-badge svg {
  stroke: var(--secondary-color);
  transition: all 0.3s ease;
}

.quality-badge:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .quality-badges {
    gap: 15px;
  }
  
  .quality-badge {
    width: 100%;
    justify-content: center;
  }
  
  .products-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .products-showcase {
    padding: 25px 15px;
  }
  
  .product-mini-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .product-mini-stats {
    justify-content: center;
  }
  
  .product-feature-content {
    padding: 20px;
  }
  
  .product-specs {
    justify-content: center;
  }
  
  .product-specs li {
    text-align: center;
  }
}

/* ---------- Safety Section ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .safety-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.safety-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.safety-stat-card {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.4s ease;
}
.safety-stat-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}
.safety-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 5px;
}
.safety-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.safety-stat-desc {
  color: var(--gray-medium);
  line-height: 1.5;
  font-size: 0.95rem;
}

.safety-initiatives {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.initiative-card {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
}
.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.initiative-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.initiative-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.initiative-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.initiative-link:hover {
  color: var(--primary-color);
}
.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: var(--light-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.doc-link svg {
  width: 18px;
  height: 18px;
}
.doc-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* ---------- Timeline (Matching About) ---------- */
.timeline-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .timeline-controls {
    justify-content: flex-end;
  }
}
.timeline-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.timeline-arrow:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.timeline-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.timeline-item {
  flex: 0 0 280px;
  background: var(--white-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--secondary-color);
}
.timeline-year {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.timeline-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.timeline-item p {
  color: var(--gray-medium);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ---------- News Section ---------- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}
.news-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.news-date {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 10px;
}
.news-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.news-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.news-link:hover {
  color: var(--primary-color);
}

/* ---------- Expertise Section ---------- */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.expertise-card {
  background: var(--white-color);
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all 0.4s ease;
}
.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}
.expertise-icon {
  width: 70px;
  height: 70px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}
.expertise-card:hover .expertise-icon {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}
.expertise-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}
.expertise-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.expertise-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: clamp(60px, 12vw, 120px) 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--white-color);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    background-attachment: fixed;
  }
}
.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;
  }
}

/* ---------- Buttons ---------- */
.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);
  color: var(--white-color);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-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;
  display: inline-block;
}
.cc-btn-outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}
.text-center {
  text-align: center;
}

/* ---------- 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); }
}

/* ---------- Responsive Utilities ---------- */
@media (max-width: 768px) {
  .section-header h2:after {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .operation-content {
    padding: 20px 15px 25px;
  }
  .safety-stat-number {
    font-size: 1.8rem;
  }
  .document-links {
    flex-direction: column;
    gap: 10px;
  }
  .doc-link {
    width: 100%;
  }
}

/* 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;
}
/* ========== TIMELINE ARROW FIXES ========== */

/* Ensure arrows are visible and clickable */
.timeline-arrow {
  width: 44px;
  height: 44px;
  background: var(--white-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  touch-action: manipulation;
}

.timeline-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary-color);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.timeline-arrow:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.timeline-arrow:hover svg {
  stroke: white;
}

.timeline-arrow.left svg {
  transform: rotate(180deg);
}

/* Fix for pointer-events none on disabled state */
.timeline-arrow[style*="opacity: 0.5"] {
  pointer-events: none !important;
  opacity: 0.5 !important;
  cursor: default !important;
}

/* Ensure timeline container doesn't block arrows */
.timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.timeline-controls {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 20px;
  z-index: 5;
  position: relative;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .timeline-controls {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .timeline-arrow {
    width: 40px;
    height: 40px;
  }
  
  .timeline-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* Fix for timeline container on iOS */
.timeline-container {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px;
  scrollbar-width: thin;
}

.timeline-item {
  scroll-snap-align: start;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  flex: 0 0 280px;
  background: var(--white-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--secondary-color);
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure timeline items are visible on mobile */
@media (max-width: 768px) {
  .timeline-container {
    padding: 20px 15px;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
  
  .timeline-item {
    flex: 0 0 260px;
    min-width: 260px;
    margin-right: 15px;
  }
  
  @media (max-width: 375px) {
    .timeline-item {
      flex: 0 0 240px;
      min-width: 240px;
    }
  }
}

/* Fix for animation conflict */
.timeline-item[data-animate] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.timeline-item[data-animate].visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Fix for flexbox gap on older iOS */
@supports not (gap: 20px) {
  .timeline-container {
    margin-right: -20px;
  }
  .timeline-item {
    margin-right: 20px;
  }
}

/* Ensure timeline section has minimum height */
#journey {
  min-height: 400px;
}


