/* ===== MODERN ABOUT PAGE STYLES ===== */

:root {
  --about-dark: #0f0f0f;
  --about-orange: #f24e1e; /* Matching the vibrant red-orange from the image */
  --about-white: #ffffff;
  --about-grey: #f4f4f4;
  --about-text-light: #b3b3b3;
}

body {
  background-color: var(--about-dark);
}

/* Base typography for about page */
.modern-about {
  font-family: 'Outfit', sans-serif;
  color: var(--about-white);
  line-height: 1.6;
}

.text-orange { color: var(--about-orange); }
.text-white { color: var(--about-white); }
.orange-text { color: var(--about-orange); }
.bold-text { font-weight: 700; }

.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--about-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-heading {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #111;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* 1. Hero Section */
.modern-hero {
  display: flex;
  background-color: var(--about-dark);
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.modern-hero-content {
  flex: 1;
  padding: 100px 5% 100px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--about-white);
  margin-bottom: 40px;
}
.hero-breadcrumb a { color: var(--about-white); opacity: 0.7; }
.hero-breadcrumb span.current { color: var(--about-orange); }

.hero-title {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 8vw, 120px);
  line-height: 0.85;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 16px;
  color: var(--about-white);
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.8;
  max-width: 450px;
  display: block !important;
}

.modern-hero-image {
  flex: 1;
  position: relative;
}

.modern-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  right: 0;
}

/* 2. Our Story Section */
.modern-story {
  background-color: var(--about-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 10%;
  gap: 80px;
}

.story-image-wrap {
  width: 100%;
}
.story-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-text-wrap p {
  color: #333;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 480px;
}

/* 3. Features Section */
.modern-features {
  background-color: #0c0c0c;
  padding: 80px 10%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(242, 78, 30, 0.2);
  border-radius: 12px;
  background-color: rgba(255,255,255,0.02);
  transition: 0.3s ease;
}

.feature-card:hover {
  background-color: rgba(242, 78, 30, 0.05);
  border-color: rgba(242, 78, 30, 0.5);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--about-orange);
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--about-white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 12px;
  color: var(--about-text-light);
  line-height: 1.6;
}

/* 4. Our Promise Section */
.modern-promise {
  background-color: var(--about-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 10%;
  gap: 80px;
}

.promise-text-wrap p {
  color: #333;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 480px;
}

.promise-image-wrap {
  width: 100%;
}
.promise-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* 5. Stats Footer Section */
.modern-stats {
  background-color: #0c0c0c;
  padding: 60px 10%;
}

.stats-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--about-orange);
  margin-bottom: 16px;
}

.stat-box h4 {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--about-orange);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--about-white);
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .modern-hero-content { padding-left: 5%; }
}

@media (max-width: 900px) {
  .modern-story, .modern-promise { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    text-align: center; 
    padding: 70px 6%;
  }
  .modern-promise .promise-text-wrap { order: 2; }
  .modern-promise .promise-image-wrap { order: 1; }
  .story-text-wrap p, .promise-text-wrap p { 
    margin-left: auto; 
    margin-right: auto; 
    font-size: 16px; 
  }
  
  .modern-hero { 
    flex-direction: column; 
    min-height: auto;
  }
  .modern-hero-image { 
    width: 100%; 
    order: 2; 
    height: 45vh; /* Fixed height for image on mobile */
    min-height: 350px;
  }
  .modern-hero-image img {
    position: relative;
    height: 100%;
  }
  .modern-hero-content { 
    order: 1; 
    padding: 60px 6%; 
    text-align: center; 
  }
  .hero-breadcrumb {
    margin-bottom: 24px;
  }
  .hero-title {
    font-size: 72px;
    margin-bottom: 20px;
  }
  .hero-desc { 
    margin-left: auto; 
    margin-right: auto; 
    font-size: 16px;
  }
  
  .stats-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 600px) {
  .modern-story, .modern-promise { padding: 60px 5%; }
  .modern-features { padding: 60px 5%; }
  
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 24px 20px; }
  
  .hero-title { font-size: 56px; line-height: 1; }
  .section-heading { font-size: 40px; line-height: 1.1; margin-bottom: 16px; }
  
  .stats-grid-inner { gap: 30px 15px; }
  .stat-box h4 { font-size: 42px !important; }
  .stat-box p { font-size: 11px; }
  .stat-icon { width: 32px; height: 32px; margin-bottom: 12px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 48px; }
  .section-heading { font-size: 36px; }
  .modern-hero-image { height: 40vh; min-height: 300px; }
}
