/* ==================== ABOUT PAGE ==================== */

.about-page {
  width: 100%;
  overflow: hidden;
}

/* ==================== HERO BANNER ==================== */

.hero-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%),
    url('/uploads/images/banners/about.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(232, 0, 40, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 0, 40, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.brand-showcase {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.logo-display {
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-display img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(232, 0, 40, 0.3));
  transition: transform 0.3s ease;
  display: block;
}

.logo-display img:hover {
  transform: scale(1.05);
}

.tagline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* ==================== CONTENT GRID ==================== */

.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  gap: 5rem;
  background-color: var(--bg);
}

/* ==================== BLOCK HEADER ==================== */

.block-header {
  margin-bottom: 3rem;
  position: relative;
}

.heading-primary {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--txt);
  margin: 0;
  position: relative;
  display: inline-block;
}

.heading-primary::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius);
}

/* ==================== STORY BLOCK ==================== */

.story-block {
  background: var(--panel);
  border-radius: calc(var(--radius) * 3);
  padding: 4rem;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--borders);
}

.story-block:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.08),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.narrative-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.paragraph-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--txt);
  font-weight: 500;
  margin: 0;
}

.paragraph-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* ==================== PRINCIPLES BLOCK ==================== */

.principles-block {
  padding: 0;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.principle-card {
  background: var(--panel);
  border-radius: calc(var(--radius) * 2.5);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--borders);
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.principle-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);
  border-color: var(--accent);
  background-color: var(--panel);
}

.principle-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-2);
  border-radius: calc(var(--radius) * 2.5);
  transition: all 0.3s ease;
  border: 1px solid var(--borders);
}

.principle-card:hover .card-icon {
  background: var(--accent);
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent);
}

.card-icon i {
  font-size: 2rem;
  color: var(--accent);
  transition: color 0.3s ease;
}

.principle-card:hover .card-icon i {
  color: var(--txt-2);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--txt);
  margin: 0 0 1rem 0;
}

.card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ==================== CTA BANNER ==================== */

.cta-banner {
  position: relative;
  background: var(--panel-2);
  padding: 5rem 2rem;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--txt);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.cta-message {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 2.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ==================== ANIMATIONS ==================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }

  .logo-display img {
    max-width: 200px;
  }

  .content-grid {
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .story-block {
    padding: 2.5rem 1.5rem;
    border-radius: calc(var(--radius) * 2);
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .principle-card {
    padding: 2rem 1.5rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .btn-action {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .heading-primary::after {
    width: 40px;
    height: 3px;
    bottom: -8px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 1.75rem;
  }
}