/* About Us Page Specific Styles */

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.about-hero .hero-image {
  position: absolute;
  inset: 0;
}

.about-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.7);
}

.about-hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease-out;
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-hero h1 {
    font-size: 3.75rem;
  }
}

.about-hero p {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 42rem;
  margin: 0 auto;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.stats-section {
  padding: 3rem 0;
  background-color: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.mission-section {
  padding: 5rem 0;
}

.mission-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.mission-content {
  max-width: 100%;
}

.section-label {
  color: hsl(var(--accent));
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mission-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .mission-content h2 {
    font-size: 2.5rem;
  }
}

.mission-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1rem;
}

.mission-content .btn {
  margin-top: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-card {
  background-color: hsl(var(--secondary));
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease-out;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* About Content Section */
.about-content-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.founder-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.founder-image-wrapper .founder-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.founder-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.95), transparent);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
}

.founder-label h5 {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.about-text-section {
  max-width: 100%;
}

.section-header {
  margin-bottom: 2rem;
}

.section-label {
  color: hsl(var(--accent));
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.about-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* History Timeline Section */
.history-section {
  padding: 5rem 0;
  background-color: hsl(var(--secondary));
}

.history-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .history-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.history-intro {
  max-width: 100%;
}

.history-intro p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.timeline-container {
  position: relative;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, hsl(var(--accent)), hsl(var(--accent) / 0.3));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(var(--accent));
  border: 4px solid hsl(var(--background));
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.2);
  z-index: 2;
}

.timeline-year-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin: 0;
  font-size: 0.9375rem;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 5rem 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.advantage-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--accent) / 0.5));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--accent) / 0.3);
}

.advantage-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.15), hsl(var(--accent) / 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  background: linear-gradient(135deg, hsl(var(--accent) / 0.25), hsl(var(--accent) / 0.15));
  transform: scale(1.1);
}

.advantage-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.advantage-card p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin: 0;
}

.text-center {
  text-align: center;
}

/* History Layout */
.history-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .history-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.history-intro {
  max-width: 100%;
}

.history-intro p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.timeline-container {
  position: relative;
}

.timeline-year-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  border: 2px solid hsl(var(--accent) / 0.2);
}

