/* About Section Styling */
.about-section {
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  position: relative;
}

/* Hero Section */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.1) 0%, 
    rgba(168, 85, 247, 0.05) 50%, 
    rgba(236, 72, 153, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><rect width="11" height="11" rx="2"/></g></g></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text {
  position: relative;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 10%;
  animation-delay: 2s;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.element-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 50%;
  animation-delay: 4s;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Brand Story Section */
.brand-story {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.brand-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Layout - Two columns */
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.story-content {
  padding: 0;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 32px;
  position: relative;
}

.story-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 24px;
}

.story-text em {
  font-style: italic;
  color: #667eea;
  font-weight: 600;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Desktop layout for stats */
@media (min-width: 768px) {
  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Inline Values Showcase */
.values-showcase-inline {
  padding: 42px;
}

.values-showcase-inline .section-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
}

.values-showcase-inline .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.values-showcase-inline .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Desktop layout for inline values */
@media (min-width: 768px) {
  .values-showcase-inline .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.values-showcase-inline .value-card {
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.values-showcase-inline .value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
}

.values-showcase-inline .value-card:hover::before {
  left: 0;
}

.values-showcase-inline .value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.values-showcase-inline .value-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 16px 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.values-showcase-inline .value-icon > div {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
}

.values-showcase-inline .value-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.values-showcase-inline .value-description {
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.9rem;
}

.stat-item {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Customer Reviews Section */
.customer-reviews-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 60px;
  opacity: 0.8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
}

/* Desktop layout for reviews */
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.review-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
}

.review-card:hover::before {
  left: 0;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.review-stars {
  margin-bottom: 24px;
}

.star {
  color: #ffd700;
  font-size: 1.25rem;
  margin-right: 4px;
}

.star.filled {
  color: #ffd700;
}

.review-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 32px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  text-align: center;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.author-title {
  color: #667eea;
  font-size: 0.875rem;
  font-weight: 500;
}

.section-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #2d3748;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
}

.value-card:hover::before {
  left: 0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.value-icon > div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.value-description {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

/* Mission Section */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.mission-statement {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0.95;
}

.mission-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
}

.signature-text {
  font-weight: 500;
  opacity: 0.8;
}

/* Animation Classes */
[data-animation="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-animation="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

[data-animation="slide-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

[data-animation="slide-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

[data-animation="slide-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.animate {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 250px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-content {
    text-align: center;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

  .values-showcase-inline .section-subtitle {
    text-align: center;
  }

  .values-showcase-inline .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .values-showcase-inline .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-title {
    font-size: 2rem;
  }

  .mission-statement {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .values-showcase-inline .value-card {
    padding: 20px;
  }

  .review-card {
    padding: 30px;
  }

  .reviews-title {
    font-size: 2rem;
  }

  .reviews-subtitle {
    font-size: 1.125rem;
  }
}