/* About Us Page Styling - Mobile First Responsive Design */

/* Hero Section */
.about-hero {
  position: relative;
  background: url("/placeholder.svg?height=600&width=1200") center / cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  animation: fadeInUp 0.8s ease-out;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: #e67e22;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Story Sections */
.about-story-section {
  padding: 60px 20px;
}

.about-story-alt {
  background-color: #f9f9f9;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-row-reverse {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-row-reverse .story-image-wrapper {
  order: 1;
}

.story-row-reverse .story-text-wrapper {
  order: 2;
}

.story-image-wrapper {
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease-out;
  display: block;
}

.story-image-wrapper:hover .story-image {
  transform: scale(1.03);
}

.story-text-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.story-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.story-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 18px 0;
  letter-spacing: 0.3px;
}

.story-highlight {
  font-size: 1.1rem;
  font-style: italic;
  color: #e67e22;
  background: rgba(230, 126, 34, 0.1);
  padding: 16px;
  border-left: 4px solid #e67e22;
  border-radius: 4px;
}

/* Values List */
.values-list {
  margin: 30px 0;
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e67e22;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.value-title {
  display: block;
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-description {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Promise Section */
.promise-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.promise-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.promise-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e67e22;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.promise-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ecf0f1;
  margin: 0 0 20px 0;
}

.promise-highlight {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e67e22;
  margin: 0;
  font-weight: 500;
}

/* CTA Section */
.about-cta-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 35px 0;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-button-primary {
  background: #e67e22;
  color: white;
}

.cta-button-primary:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-button-secondary {
  background: white;
  color: #e67e22;
  border-color: #e67e22;
}

.cta-button-secondary:hover {
  background: #e67e22;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-story-section {
    padding: 45px 20px;
  }

  .story-row,
  .story-row-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-row-reverse .story-image-wrapper,
  .story-row-reverse .story-text-wrapper {
    order: unset;
  }

  .story-title {
    font-size: 1.6rem;
  }

  .story-paragraph {
    font-size: 0.95rem;
  }

  .promise-section {
    padding: 50px 20px;
  }

  .promise-title {
    font-size: 2rem;
  }

  .promise-text {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .about-hero {
    min-height: 350px;
  }

  .about-hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }

  .about-hero-content {
    padding: 30px 15px;
  }

  .about-story-section {
    padding: 30px 15px;
  }

  .story-row,
  .story-row-reverse {
    gap: 20px;
  }

  .story-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .story-paragraph {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .value-item {
    gap: 12px;
    padding: 12px;
    margin-bottom: 15px;
  }

  .value-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .value-title {
    font-size: 0.9rem;
  }

  .value-description {
    font-size: 0.85rem;
  }

  .promise-section {
    padding: 40px 15px;
  }

  .promise-title {
    font-size: 1.4rem;
  }

  .promise-text {
    font-size: 0.95rem;
  }

  .promise-highlight {
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 40px 15px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .about-hero-title {
    font-size: 1.4rem;
  }

  .story-title {
    font-size: 1.2rem;
  }

  .promise-title {
    font-size: 1.2rem;
  }

  .cta-title {
    font-size: 1.2rem;
  }
}

/* Performance Optimization */
.story-image {
  will-change: transform;
}

.cta-button {
  will-change: transform, background-color;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
