/* ===== ABOUT PAGE CSS - EFG AFRO MARKET ===== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary-green: #055440;
  --accent-orange: #E88824;
  --brown-accent: #643919;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --background-white: #ffffff;
  --background-light: #f8f9fa;
  --background-gray: #f5f5f5;
  --background-black: #000000;
  --card-shadow: 0 15px 35px rgba(5, 84, 64, 0.1);
  --card-shadow-hover: 0 25px 50px rgba(5, 84, 64, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 15px;
  --border-radius-lg: 20px;
  --border-radius-xl: 25px;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  background: var(--background-white);
}

.container {
  position: relative;
  z-index: 2;
}

/* ===== BACKGROUND SYSTEM ===== */
.background-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.background-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: -4;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 25%, rgba(5, 84, 64, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(232, 136, 36, 0.02) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.85) 100%);
  z-index: -3;
}

.mesh-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(5, 84, 64, 0.02) 0%, transparent 100%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(232, 136, 36, 0.02) 0%, transparent 100%);
  z-index: -2;
}

/* ===== PAGE HERO SECTION ===== */
.page-hero-section {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
  margin-top: 80px;
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 84, 64, 0.1);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
  animation: fadeInDown 1s ease-out;
}

.hero-badge i {
  animation: pulse 2s infinite;
  color: var(--accent-orange);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.page-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== SECTION COMMON STYLES ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 84, 64, 0.1);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
}

.section-badge i {
  font-size: 0.8rem;
  color: var(--accent-orange);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ===== ENHANCED CARD STYLES ===== */
.mission-card,
.vision-card,
.value-card,
.intro-visual .main-image,
.differentiators-visual .visual-container,
.cta-card {
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mission-card:hover,
.vision-card:hover,
.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(5, 84, 64, 0.3);
  box-shadow: var(--card-shadow-hover);
  background: rgba(5, 84, 64, 0.02);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 10px 30px rgba(5, 84, 64, 0.3);
}

.btn-primary:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 136, 36, 0.4);
  color: white;
}

.btn-outline {
  background: var(--background-white);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(5, 84, 64, 0.15);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(5, 84, 64, 0.3);
}

/* ===== COMPANY INTRODUCTION SECTION ===== */
.company-intro-section {
  padding: 100px 0;
  background: var(--background-white);
}

.intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== INTRO VISUAL ===== */
.intro-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--background-white);
  border: 2px solid rgba(5, 84, 64, 0.1);
}

.main-image img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.overlay-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--card-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(5, 84, 64, 0.4);
  background: var(--background-white);
}

.stat-card:nth-child(1) {
  top: 10%;
  right: -2%;
}

.stat-card:nth-child(2) {
  
  left: -5%;
}

.stat-card:nth-child(3) {
  bottom: 10%;
  right: -2%;
}

.stat-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

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

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
  padding: 100px 0;
  background: var(--background-light);
}

.mission-card,
.vision-card {
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  border-color: rgba(5, 84, 64, 0.3);
  box-shadow: var(--card-shadow-hover);
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.mission-icon {
  background: var(--primary-green);
}

.vision-icon {
  background: var(--accent-orange);
}

.card-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.card-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.point-item i {
  color: var(--primary-green);
  font-size: 1rem;
}

.vision-goals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  border-left: 4px solid var(--accent-orange);
}

.goal-item:hover {
  background: rgba(232, 136, 36, 0.1);
  transform: translateX(10px);
}

.goal-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.goal-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.goal-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 100px 0;
  background: var(--background-white);
}

/* ===== FIXED VALUES GRID - 4x2 Layout ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(5, 84, 64, 0.3);
  box-shadow: var(--card-shadow-hover);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 84, 64, 0.05), transparent);
  transition: left 0.6s;
}

.value-card:hover::before {
  left: 100%;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.value-card:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
  background: var(--accent-orange);
}

.value-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
}

/* ===== DIFFERENTIATORS SECTION ===== */
.differentiators-section {
  padding: 100px 0;
  background: var(--background-light);
}

.differentiators-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.differentiator-tabs {
  margin-top: 2rem;
}

.tab-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.2);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 84, 64, 0.2);
}

.tab-content {
  position: relative;
  min-height: 300px;
}

.tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.tab-pane.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.tab-pane h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.tab-pane p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tab-pane ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tab-pane li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 0;
}

.tab-pane li i {
  color: var(--primary-green);
  font-size: 1rem;
}

/* ===== DIFFERENTIATORS VISUAL ===== */
.differentiators-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.main-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.main-visual.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.main-visual:hover img {
  transform: scale(1.1);
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overlay-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.visual-overlay h5 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.badge-item {
  position: absolute;
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  box-shadow: var(--card-shadow);
  animation: badgeFloat 6s ease-in-out infinite;
}

.badge-item:nth-child(1) {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.badge-item:nth-child(2) {
  top: 50%;
  left: -5%;
  animation-delay: 2s;
}

.badge-item:nth-child(3) {
  bottom: 10%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

/* Hide floating badges on mobile */
.desktop-only {
  display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--background-white);
}

.cta-card {
  background: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow-hover);
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  z-index: -1;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.cta-text h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-green);
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-orange);
  color: white;
}

.cta-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary-green);
  border-color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(5, 84, 64, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-orange);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(232, 136, 36, 0.4);
}

/* ===== RESPONSIVE LAYOUT SYSTEM ===== */
.desktop-layout {
  display: block;
}

.mobile-layout {
  display: none;
}

@media (max-width: 991.98px) {
  .desktop-layout {
    display: none;
  }
  
  .mobile-layout {
    display: block;
  }
  
  /* Hide floating badges on mobile */
  .desktop-only {
    display: none !important;
  }
}

/* ===== OWL CAROUSEL STYLES ===== */
.owl-carousel .owl-nav {
  margin-top: 2rem;
  text-align: center;
}

.owl-carousel .owl-nav button {
  background: var(--background-white) !important;
  border: 1px solid rgba(5, 84, 64, 0.2) !important;
  color: var(--text-primary) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  margin: 0 10px !important;
  font-size: 1.2rem !important;
  transition: var(--transition-smooth) !important;
  box-shadow: var(--card-shadow) !important;
}

.owl-carousel .owl-nav button:hover {
  background: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  color: white !important;
  transform: scale(1.1) !important;
  box-shadow: var(--card-shadow-hover) !important;
}

.owl-carousel .owl-dots {
  text-align: center !important;
  margin-top: 2rem !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
  z-index: 10 !important;
  height: 30px !important;
  line-height: 30px !important;
}

.owl-carousel .owl-dot {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  background: rgba(5, 84, 64, 0.3) !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
  padding: 0 !important;
  outline: none !important;
  position: relative !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.owl-carousel .owl-dot span {
  display: none !important;
}

.owl-carousel .owl-dot.active {
  background: var(--primary-green) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 15px rgba(5, 84, 64, 0.6) !important;
}

.owl-carousel .owl-dot:hover:not(.active) {
  background: rgba(5, 84, 64, 0.6) !important;
  transform: scale(1.1) !important;
}

/* ===== CAROUSEL ANIMATIONS ===== */
.owl-carousel .owl-item {
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.owl-carousel .owl-item.active {
  opacity: 1;
  transform: scale(1);
}

.owl-carousel .owl-item.center {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== MISSION & VISION CAROUSEL ===== */
.mission-vision-carousel {
  margin-top: 3rem;
}

.mission-vision-carousel .owl-item {
  padding: 0 15px;
}

.mission-vision-carousel .mission-card,
.mission-vision-carousel .vision-card {
  height: 100%;
  margin: 0;
}

/* ===== VALUES CAROUSEL ===== */
.values-carousel {
  margin-top: 3rem;
}

.values-carousel .owl-item {
  padding: 20px 15px;
}

.values-carousel .value-card {
  height: 100%;
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== ENHANCED CARD ANIMATIONS ===== */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.value-card,
.mission-card,
.vision-card {
  animation: cardSlideIn 0.6s ease-out;
}

.value-card:hover,
.mission-card:hover,
.vision-card:hover {
  animation: cardFloat 2s ease-in-out infinite;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-elements,
  .cta-floats {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== LARGE DESKTOP (1200px+) ===== */
@media (min-width: 1200px) {
  .intro-visual .stat-card:nth-child(1) {
    right: -15%;
  }
  
  .intro-visual .stat-card:nth-child(2) {
    left: -20%;
  }
  
  .intro-visual .stat-card:nth-child(3) {
    right: -10%;
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

/* ===== DESKTOP (992px to 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
  .intro-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .tab-nav {
    justify-content: center;
  }
  
  .floating-badges .badge-item {
    position: relative;
    display: inline-flex;
    margin: 0.5rem;
    animation: none;
  }
  
  .floating-badges {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    pointer-events: all;
  }
}

/* ===== TABLET AND SMALL DESKTOP (768px - 991px) ===== */
@media (max-width: 991.98px) {
  .page-hero-section {
    padding: 120px 0 60px;
    min-height: 30vh;
  }
  
  section {
    padding: 80px 0;
  }
  
  .company-intro-section .row {
    flex-direction: column-reverse;
  }
  
  .intro-content {
    text-align: center;
    margin-top: 2rem;
  }
  
  .intro-features {
    align-items: center;
  }
  
  .intro-buttons {
    justify-content: center;
    align-items: center;
  }
  
  /* Hero section - mobile improvements */
  .intro-visual .main-image img {
    height: 300px;
    object-fit: cover;
  }
  
  /* Position stat cards below image on mobile */
  .floating-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .stat-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Mission & Vision mobile fixes */
  .mission-vision-carousel .mission-card,
  .mission-vision-carousel .vision-card {
    transform: none !important;
    opacity: 1 !important;
  }
  
  .mission-vision-carousel .owl-item {
    transform: none !important;
    opacity: 1 !important;
  }
  
  .differentiators-section .row {
    flex-direction: column;
  }
  
  .differentiators-visual {
    margin-top: 2rem;
  }
  
  .tab-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  /* Values grid for tablet */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===== MOBILE (576px - 767px) ===== */
@media (max-width: 767.98px) {
  .page-hero-section {
    padding: 100px 0 50px;
    min-height: 25vh;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Enhanced hero image size for mobile */
  .intro-visual .main-image img {
    height: 350px;
    object-fit: cover;
  }
  
  /* Better stat cards layout for mobile */
  .floating-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  
  .stat-card {
    padding: 1.2rem;
    max-width: 300px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .tab-nav {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .differentiators-visual .visual-container {
    max-width: 100%;
    height: 300px;
  }
  
  .cta-content {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* ===== SMALL MOBILE (max-width: 575px) ===== */
@media (max-width: 575.98px) {
  .page-hero-section {
    padding: 90px 0 40px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .intro-content .section-badge,
  .section-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .intro-description,
  .section-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .intro-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .intro-buttons {
    gap: 0.75rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 1.5rem 1rem;
  }
  
  .card-header h3 {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 1rem;
  }
  
  .value-card {
    padding: 1.25rem;
  }
  
  .value-card h4 {
    font-size: 1.2rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  .tab-pane h4 {
    font-size: 1.3rem;
  }
  
  .tab-pane p {
    font-size: 1rem;
  }
  
  .tab-pane li {
    font-size: 0.9rem;
  }
  
  .cta-content {
    padding: 1.5rem 1rem;
  }
  
  .cta-text h3 {
    font-size: 1.8rem;
  }
  
  .cta-text p {
    font-size: 1rem;
  }
}

/* ===== EXTRA SMALL MOBILE (max-width: 375px) ===== */
@media (max-width: 375px) {
  .page-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-buttons,
  .cta-buttons {
    gap: 0.5rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .mission-card,
  .vision-card,
  .value-card {
    padding: 1rem;
  }
  
  .card-icon,
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .stat-card {
    padding: 0.75rem;
    gap: 8px;
  }
  
  .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--primary-green));
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.rounded-custom {
  border-radius: var(--border-radius-lg);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.will-change-transform {
  will-change: transform;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
  :root {
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.4);
  }

  .mission-card,
  .vision-card,
  .value-card,
  .tab-btn {
    border-width: 2px;
  }

  .btn-outline {
    border-width: 3px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header-section,
  .back-to-top,
  .floating-elements,
  .cta-floats,
  .floating-stats,
  .floating-badges {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .page-title {
    color: black;
  }

  .gradient-text {
    color: var(--primary-green);
  }

  .page-hero-section {
    padding: 2rem 0 1rem;
  }

  section {
    padding: 2rem 0;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
.touch-device .value-card:active,
.touch-device .mission-card:active,
.touch-device .vision-card:active,
.touch-device .tab-btn:active {
  transform: scale(0.98);
}

.touch-active {
  background: rgba(5, 84, 64, 0.05) !important;
  border-color: var(--primary-green) !important;
}

/* ===== FOCUS IMPROVEMENTS ===== */
.navbar-toggler:focus {
  box-shadow: 0 0 15px rgba(5, 84, 64, 0.3);
  outline: none;
}

.nav-link:focus,
.search-btn:focus,
.language-select:focus,
.category-filter:focus,
.search-input:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* ===== NOTIFICATION SYSTEM STYLES ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--background-white);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--card-shadow);
  z-index: 10000;
  transform: translateX(400px);
  transition: var(--transition-smooth);
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left: 4px solid var(--primary-green);
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-info {
  border-left: 4px solid var(--accent-orange);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification-success i {
  color: var(--primary-green);
}

.notification-error i {
  color: #dc3545;
}

.notification-info i {
  color: var(--accent-orange);
}

/* ===== KEYBOARD NAVIGATION ===== */
.keyboard-focus {
  outline: 3px solid var(--accent-orange) !important;
  outline-offset: 2px !important;
}

/* ===== RIPPLE EFFECT STYLES ===== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(5, 84, 64, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== PERFORMANCE ENHANCEMENTS ===== */
.hero-card,
.value-card,
.mission-card,
.vision-card,
.tab-btn {
  will-change: transform;
  backface-visibility: hidden;
}

.owl-carousel .owl-item {
  backface-visibility: hidden;
}

/* ===== TEXT SELECTION ===== */
::selection {
  background: rgba(5, 84, 64, 0.2);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(5, 84, 64, 0.2);
  color: var(--text-primary);
}

/* ===== INPUT FOCUS STYLES ===== */
input:focus,
select:focus,
button:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* ===== END OF ABOUT.CSS ===== */