/* =========================
   ABOUT PAGE STYLES
========================= */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  background: #000;
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin: 15px 0 30px;
}

.story-content p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 211, 0, 0.2);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-frame .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 211, 0, 0.1) 0%, transparent 100%);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: #c8d300;
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(200, 211, 0, 0.3);
}

.experience-badge .number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.experience-badge .text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Values Section */
.values-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(200, 211, 0, 0.3);
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 211, 0, 0.1);
  border-radius: 50%;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: #c8d300;
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.value-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  background: #000;
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: rgba(200, 211, 0, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #c8d300 0%, #a8b300 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
  fill: #000;
}

.team-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.team-role {
  display: block;
  color: #c8d300;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-card p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.7;
}

/* Why Section */
.why-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin: 15px 0 30px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list svg {
  width: 24px;
  height: 24px;
  fill: #c8d300;
  flex-shrink: 0;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(200, 211, 0, 0.2);
}

/* CTA Section */
.about-cta {
  background: #000;
  padding: 80px 0;
}

.about-cta .cta-box {
  background: linear-gradient(135deg, rgba(200, 211, 0, 0.15) 0%, rgba(200, 211, 0, 0.02) 100%);
  border: 1px solid rgba(200, 211, 0, 0.3);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
}

.about-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 15px;
}

.about-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 30px;
}

.about-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-cta .cta-btn {
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta .cta-btn.primary {
  background: #c8d300;
  color: #000;
}

.about-cta .cta-btn.primary:hover {
  background: #dae630;
  transform: translateY(-2px);
}

.about-cta .cta-btn.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.about-cta .cta-btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .story-image {
    order: -1;
  }
  
  .experience-badge {
    bottom: -20px;
    right: 20px;
    padding: 20px 25px;
  }
  
  .experience-badge .number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 50px;
  }
  
  .about-hero h1 {
    font-size: 36px;
  }
  
  .story-section,
  .values-section,
  .team-section,
  .why-section {
    padding: 60px 0;
  }
  
  .story-content h2,
  .why-content h2 {
    font-size: 32px;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .image-frame img {
    height: 280px;
  }
  
  .about-cta .cta-box {
    padding: 40px 25px;
  }
  
  .about-cta h2 {
    font-size: 28px;
  }
  
  .about-cta .cta-buttons {
    flex-direction: column;
  }
  
  .about-cta .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 28px;
  }
  
  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}