/* ========================================
   ABOUT PAGE - JIM-SMART509
   Beautiful Modern Design with Animations
======================================== */

.container-about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HERO SECTION ===== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #10b981 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 3rem 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 500;
  animation: fadeInUp 1s ease-out;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease-out;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item i {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 600;
}

/* ===== COMPANY STORY ===== */
.company-story {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title.centered {
  justify-content: center;
  text-align: center;
}

.section-title i {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 1.5rem;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.feature-item i {
  width: 24px;
  height: 24px;
  color: #10b981;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.2s ease-out;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(16, 185, 129, 0.2));
  pointer-events: none;
}

/* ===== CEO SECTION ===== */
.ceo-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.ceo-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.ceo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1e40af, #10b981);
}

.ceo-image-wrapper {
  position: relative;
  text-align: center;
}

.ceo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.ceo-image {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 24px;
  border: 5px solid white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.ceo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, #1e40af, #10b981);
  opacity: 0.2;
  border-radius: 24px;
  filter: blur(40px);
  z-index: 1;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

.ceo-name {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e40af, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ceo-title {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 2rem;
}

.ceo-quote {
  position: relative;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border-left: 4px solid #10b981;
}

.ceo-quote i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  color: #10b981;
  opacity: 0.3;
}

.ceo-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  font-style: italic;
  padding-left: 3rem;
}

.ceo-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 2rem;
}

.ceo-achievements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f9fafb, white);
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.achievement:hover {
  border-color: #10b981;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.achievement i {
  width: 28px;
  height: 28px;
  color: #10b981;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.achievement span {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 6rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, white 100%);
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  border-color: #10b981;
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e40af, #10b981);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(10deg) scale(1.1);
}

.value-icon i {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b7280;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #10b981 100%);
  text-align: center;
  color: white;
}

.contact-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-cta p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: white;
  color: #1e40af;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary i,
.btn-secondary i {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid,
  .ceo-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ceo-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    margin-top: 70px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-story,
  .ceo-section,
  .values-section,
  .contact-cta {
    padding: 4rem 0;
  }

  .container-about {
    padding: 0 1.5rem;
  }

  .ceo-card {
    padding: 2rem;
  }

  .ceo-image {
    max-width: 280px;
    height: 280px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .ceo-name {
    font-size: 2rem;
  }
}
