/* ========================================
   About Page - Independent Styles
======================================== */

/* Reset & Base */
.about-page-new {
  background: #f5f7fa;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(220, 235, 255, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(2, 20, 60, 0.85), 0 1px 8px rgba(2, 20, 60, 0.75), 0 4px 32px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 3rem;
  text-shadow: 0 2px 20px rgba(2, 20, 60, 0.85), 0 1px 8px rgba(2, 20, 60, 0.75), 0 4px 32px rgba(0, 0, 0, 0.6);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
}

/* Section Badge */
.section-badge {
  display: inline-block;
  /* Original: background: linear-gradient(135deg, rgba(74, 155, 127, 0.9), rgba(58, 141, 109, 0.85)); */ background: linear-gradient(135deg, rgba(70, 95, 100, 0.88), rgba(75, 105, 110, 0.85));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Story Section */
.about-story {
  padding: 8rem 0;
  background: white;
}

.story-header {
  text-align: center;
  margin-bottom: 4rem;
}

.story-header .section-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.story-header .section-heading {
  text-align: center;
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2563a8;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e8f5f1;
  transform: translateX(10px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  /* Original: background: linear-gradient(135deg, rgba(74, 155, 127, 0.9), rgba(58, 141, 109, 0.85)); */ background: linear-gradient(135deg, rgba(70, 95, 100, 0.88), rgba(75, 105, 110, 0.85));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.story-image {
  position: relative;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.image-card:hover {
  transform: translateY(-10px) rotate(2deg);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-icon {
  font-size: 2.5rem;
}

.floating-text {
  font-weight: 700;
  color: #2563a8;
  font-size: 1.125rem;
}

/* Service Highlight Card */
.service-highlight-card {
  background: linear-gradient(135deg, rgba(64, 94, 151, 0.92) 0%, rgba(58, 141, 109, 0.85) 100%);
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.service-highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.highlight-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.highlight-title {
  font-family: 'Spectral', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-emphasis {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Founder Section */
.about-founder {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.founder-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 6rem;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
}

.founder-decoration {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  /* Original: background: linear-gradient(135deg, rgba(74, 155, 127, 0.9), rgba(58, 141, 109, 0.85)); */ background: linear-gradient(135deg, rgba(70, 95, 100, 0.88), rgba(75, 105, 110, 0.85));
  border-radius: 20px;
  z-index: 0;
  opacity: 0.3;
}

.founder-name {
  font-size: 3rem;
  font-weight: 800;
  color: #2563a8;
  margin-bottom: 0.5rem;
}

.founder-role {
  font-size: 1.25rem;
  color: #4dbd36;
  font-weight: 600;
  margin-bottom: 2rem;
}

.founder-bio {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

/* Rich-text ul/li inside story and founder bio (ACF wysiwyg output) */
.story-text ul,
.founder-bio ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.story-text ul li,
.founder-bio ul li {
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.story-text ul li::before,
.founder-bio ul li::before {
  display: none;
}

.founder-credentials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.credential-item {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #2563a8, #2a9d8f);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Values Section */
.about-values {
  padding: 8rem 0;
  background: white;
}

.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  border-color: #4dbd36;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(21, 219, 144, 0.15);
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #e8f5f1, #d0ebe3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
  /* Original: background: linear-gradient(135deg, rgba(74, 155, 127, 0.9), rgba(58, 141, 109, 0.85)); */ background: linear-gradient(135deg, rgba(70, 95, 100, 0.88), rgba(75, 105, 110, 0.85));
  transform: scale(1.1) rotate(5deg);
}

.value-icon {
  font-size: 2.5rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563a8;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* CTA Section */
.about-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.30) 0%, rgba(21, 219, 144, 0.20) 100%);
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: #2563a8;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: #4dbd36;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .story-grid,
  .founder-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service Advantage Section */
.about-advantage {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f1 100%);
}

.advantage-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.advantage-text {
  margin-top: 2rem;
}

.advantage-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.advantage-highlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  border-left: 6px solid #4dbd36;
  text-align: left;
}

.highlight-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-size: 1.4rem;
  color: #2563a8;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.highlight-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 1rem;
  }

  .about-story,
  .about-founder {
    padding: 3rem 0;
  }

  .founder-card {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .founder-name {
    font-size: 1.75rem;
  }

  .founder-role {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .floating-card {
    position: static;
    margin-top: 2rem;
  }

  .advantage-highlight {
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    font-size: 3rem;
  }

  .service-highlight-card {
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
  }

  .highlight-title {
    font-size: 1.8rem;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .highlight-emphasis {
    font-size: 1.2rem;
  }
}
