/* ===================================
   ABOUT US PAGE - RADICAL REDESIGN
   =================================== */

/* Modern About Hero */
.modern-about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
}

.modern-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.modern-hero-bg .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-shape 20s ease-in-out infinite;
}

.modern-hero-bg .hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.modern-hero-bg .hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,152,0,0.2) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
  animation-delay: 7s;
}

.modern-hero-bg .hero-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(141,110,99,0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(30px, 30px) scale(1.05); }
}

.modern-about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag i {
  color: #FF9800;
}

.modern-about-hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.modern-about-hero-content > p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-breadcrumb a:hover {
  color: #FF9800;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

/* Company Intro Section */
.company-intro-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.company-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.15);
}

.intro-image-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-image-card:hover img {
  transform: scale(1.05);
}

.intro-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #2E7D32, #388E3C);
  color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.intro-image-badge i {
  font-size: 2.5rem;
  color: #FF9800;
}

.intro-image-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.intro-image-badge span {
  display:block;
  font-size: 14px;
  opacity: 0.95;
}

.company-intro-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(56, 142, 60, 0.1));
  color: #2E7D32;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.company-intro-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1B5E20;
  margin-bottom: 25px;
  line-height: 1.3;
}

.company-intro-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.intro-features-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.intro-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.intro-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2E7D32, #388E3C);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.intro-feature-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.intro-feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 5px;
}

.intro-feature-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Vision Mission Values Section */
.vmv-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.vmv-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.vmv-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2E7D32, #388E3C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vmv-card:hover::before {
  transform: scaleX(1);
}

.vmv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
}

.vmv-icon-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.vmv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2E7D32, #388E3C);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
  transition: transform 0.4s ease;
}

.vmv-card:hover .vmv-icon {
  transform: rotate(10deg) scale(1.1);
}

.vmv-icon i {
  font-size: 2rem;
  color: #fff;
}

.vmv-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FF9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.vmv-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1B5E20;
  margin-bottom: 15px;
}

.vmv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

.vmv-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* Why Choose Us Section */
.why-choose-modern-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-header-center .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(56, 142, 60, 0.1));
  color: #2E7D32;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1B5E20;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.why-choose-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.03), rgba(56, 142, 60, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: #2E7D32;
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.why-choose-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2E7D32, #388E3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
  transition: transform 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: rotateY(360deg);
}

.why-choose-icon i {
  font-size: 2.2rem;
  color: #fff;
}

.why-choose-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-choose-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* Stats Counter Section */
.stats-counter-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  overflow: hidden;
}

.stats-counter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stats-counter-bg .hero-shape-1,
.stats-counter-bg .hero-shape-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.stats-counter-bg .hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.stats-counter-bg .hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,152,0,0.3) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-counter-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-counter-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-counter-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 152, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.stat-counter-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.stat-counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-counter-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.cta-banner {
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #388E3C);
  border-radius: 25px;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-banner-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.btn-white-modern {
  background: #fff;
  color: #2E7D32;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-white-modern:hover {
  background: #FF9800;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-about-hero-content h1 {
    font-size: 3.5rem;
  }
  
  .company-intro-grid,
  .why-choose-grid {
    gap: 50px;
  }
  
  .intro-image-card img {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .modern-about-hero-content h1 {
    font-size: 3rem;
  }
  
  .company-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-image-card img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .modern-about-hero {
    min-height: 60vh;
    padding: 40px 0;
  }
  
  .modern-about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .modern-about-hero-content > p {
    font-size: 1.1rem;
  }
  
  .company-intro-section,
  .vmv-section,
  .why-choose-modern-section {
    padding: 60px 0;
  }
  
  .company-intro-content h2,
  .section-title {
    font-size: 2.2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-banner {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }
  
  .cta-banner-content h2 {
    font-size: 2rem;
  }
  
  .intro-image-card img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .modern-about-hero-content h1 {
    font-size: 2rem;
  }
  
  .company-intro-content h2 {
    font-size: 1.8rem;
  }
  
  .vmv-card {
    padding: 35px 25px;
  }
  
  .why-choose-card {
    padding: 30px 20px;
  }
  
  .intro-image-card img {
    height: 300px;
  }
}
