/* ============================================================
   FLEAMA ABOUT US (HAKKIMIZDA) PAGE STYLES
   Scoped to Home/About.cshtml
   Consumes design tokens from fleama-variables.css
   ============================================================ */

.fl-about-wrapper {
  overflow-x: hidden;
  padding-bottom: var(--fl-space-16);
}

/* ── Hero Section ────────────────────────────────────────── */
.fl-about-hero {
  padding: var(--fl-space-12) 0 var(--fl-space-16);
  position: relative;
}

.fl-about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--fl-space-12);
}

.fl-about-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--fl-space-2);
  background-color: var(--fl-primary-light);
  color: var(--fl-primary);
  font-size: var(--fl-text-sm);
  font-weight: var(--fl-fw-semibold);
  padding: 6px 14px;
  border-radius: var(--fl-radius-pill);
  margin-bottom: var(--fl-space-4);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.fl-about-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: var(--fl-space-5);
}

.fl-about-hero-lead {
  font-size: var(--fl-text-lg);
  color: var(--fl-text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--fl-space-6);
}

.fl-about-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--fl-space-4);
  flex-wrap: wrap;
}

/* Hero Visual Composition */
.fl-about-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-about-visual-blob {
  background: linear-gradient(135deg, var(--fl-bg-hero) 0%, var(--fl-primary-light) 100%);
  border-radius: 46% 54% 50% 50% / 48% 46% 54% 52%;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(107, 39, 55, 0.08);
}

.fl-about-hero-center-badge {
  background-color: var(--fl-bg-card);
  width: 110px;
  height: 110px;
  border-radius: var(--fl-radius-circle);
  box-shadow: var(--fl-shadow-card);
  border: 4px solid var(--fl-primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fl-primary);
  text-align: center;
  transition: var(--fl-transition-slow);
}

.fl-about-hero-center-badge i {
  font-size: 2.4rem;
  line-height: 1;
}

.fl-about-hero-center-badge span {
  font-size: var(--fl-text-xs);
  font-weight: var(--fl-fw-bold);
  margin-top: 4px;
}

.fl-about-floating-card {
  position: absolute;
  background-color: var(--fl-bg-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-lg);
  box-shadow: var(--fl-shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: flFloating 4s ease-in-out infinite;
}

.fl-about-floating-card--tl {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}

.fl-about-floating-card--br {
  bottom: 8%;
  right: -6%;
  animation-delay: 2s;
}

.fl-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--fl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fl-floating-icon.swap {
  background-color: var(--fl-primary-light);
  color: var(--fl-primary);
}

.fl-floating-icon.cycle {
  background-color: var(--fl-success-bg);
  color: var(--fl-success);
}

.fl-floating-text strong {
  display: block;
  font-size: var(--fl-text-sm);
  color: var(--fl-text-heading);
  line-height: 1.2;
}

.fl-floating-text span {
  font-size: var(--fl-text-xs);
  color: var(--fl-text-secondary);
}

@keyframes flFloating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Section Structure ───────────────────────────────────── */
.fl-about-section {
  padding: var(--fl-space-12) 0;
}

.fl-about-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--fl-space-10);
}

.fl-about-section-title {
  font-size: var(--fl-text-2xl);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  letter-spacing: -0.3px;
  margin-bottom: var(--fl-space-3);
}

.fl-about-section-desc {
  font-size: var(--fl-text-base);
  color: var(--fl-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Story Section (Hikâyemiz) ───────────────────────────── */
.fl-story-card {
  background: var(--fl-bg-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-xl);
  box-shadow: var(--fl-shadow-card);
  padding: var(--fl-space-8) var(--fl-space-10);
  position: relative;
  overflow: hidden;
}

.fl-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--fl-primary);
}

.fl-story-quote-icon {
  position: absolute;
  top: var(--fl-space-6);
  right: var(--fl-space-8);
  font-size: 4rem;
  color: var(--fl-primary-light);
  line-height: 1;
  pointer-events: none;
}

.fl-story-lead {
  font-size: var(--fl-text-xl);
  font-weight: var(--fl-fw-semibold);
  color: var(--fl-primary);
  line-height: 1.5;
  margin-bottom: var(--fl-space-5);
}

.fl-story-body {
  font-size: var(--fl-text-base);
  color: var(--fl-text-body);
  line-height: 1.8;
  margin-bottom: var(--fl-space-4);
}

.fl-story-footer-note {
  font-size: var(--fl-text-md);
  font-weight: var(--fl-fw-medium);
  color: var(--fl-text-heading);
  margin-top: var(--fl-space-5);
  padding-top: var(--fl-space-4);
  border-top: 1px dashed var(--fl-border);
  display: flex;
  align-items: center;
  gap: var(--fl-space-2);
}

/* ── Fleama Nedir & Process Flow ─────────────────────────── */
.fl-whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fl-space-8);
  align-items: center;
  margin-bottom: var(--fl-space-10);
}

.fl-whatis-content h3 {
  font-size: 1.6rem;
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  margin-bottom: var(--fl-space-4);
}

.fl-whatis-content p {
  font-size: var(--fl-text-base);
  color: var(--fl-text-body);
  line-height: 1.75;
}

.fl-whatis-highlight-box {
  background: var(--fl-bg-sidebar);
  border-left: 4px solid var(--fl-primary);
  padding: var(--fl-space-5) var(--fl-space-6);
  border-radius: 0 var(--fl-radius-md) var(--fl-radius-md) 0;
  font-size: var(--fl-text-base);
  color: var(--fl-text-heading);
  font-weight: var(--fl-fw-medium);
  line-height: 1.6;
}

/* Process Cycle Flow */
.fl-process-flow-container {
  background: var(--fl-bg-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-xl);
  padding: var(--fl-space-8) var(--fl-space-6);
  box-shadow: var(--fl-shadow-card);
}

.fl-process-flow-title {
  text-align: center;
  font-size: var(--fl-text-lg);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  margin-bottom: var(--fl-space-6);
}

.fl-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--fl-space-4);
  flex-wrap: wrap;
}

.fl-process-step {
  background: var(--fl-bg-sidebar);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-lg);
  padding: var(--fl-space-5) var(--fl-space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 170px;
  flex: 1;
  max-width: 240px;
  transition: var(--fl-transition);
}

.fl-process-step:hover {
  transform: translateY(-4px);
  background: var(--fl-bg-card);
  border-color: var(--fl-primary-light);
  box-shadow: var(--fl-shadow-md);
}

.fl-process-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--fl-radius-circle);
  background-color: var(--fl-primary-light);
  color: var(--fl-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--fl-space-3);
  transition: var(--fl-transition);
}

.fl-process-step:hover .fl-process-icon {
  background-color: var(--fl-primary);
  color: #ffffff;
}

.fl-process-step h4 {
  font-size: var(--fl-text-md);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  margin-bottom: var(--fl-space-1);
}

.fl-process-step p {
  font-size: var(--fl-text-xs);
  color: var(--fl-text-secondary);
  margin: 0;
}

.fl-process-arrow {
  color: var(--fl-primary-mid);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why Fleama (3 Core Values) ─────────────────────────── */
.fl-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fl-space-6);
}

.fl-value-card {
  background-color: var(--fl-bg-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-lg);
  box-shadow: var(--fl-shadow-card);
  padding: var(--fl-space-6);
  display: flex;
  flex-direction: column;
  transition: var(--fl-transition);
  position: relative;
  overflow: hidden;
}

.fl-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow-md);
  border-color: var(--fl-primary-light);
}

.fl-value-card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--fl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--fl-space-4);
  transition: var(--fl-transition);
}

.fl-value-card-icon-wrap.swap-val {
  background-color: var(--fl-primary-light);
  color: var(--fl-primary);
}

.fl-value-card-icon-wrap.gift-val {
  background-color: #FFF0F2;
  color: #D81B60;
}

.fl-value-card-icon-wrap.cycle-val {
  background-color: var(--fl-success-bg);
  color: var(--fl-success);
}

.fl-value-card:hover .fl-value-card-icon-wrap {
  transform: scale(1.08);
}

.fl-value-card-title {
  font-size: var(--fl-text-xl);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  margin-bottom: var(--fl-space-2);
}

.fl-value-card-desc {
  font-size: var(--fl-text-base);
  color: var(--fl-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── Manifesto Section ───────────────────────────────────── */
.fl-manifesto-banner {
  background: linear-gradient(135deg, var(--fl-primary) 0%, var(--fl-primary-hover) 100%);
  border-radius: var(--fl-radius-xl);
  padding: var(--fl-space-10) var(--fl-space-8);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--fl-shadow-md);
  position: relative;
  overflow: hidden;
}

.fl-manifesto-banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.fl-manifesto-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

.fl-manifesto-quote {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: var(--fl-fw-bold);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto var(--fl-space-8);
  letter-spacing: -0.3px;
}

.fl-manifesto-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fl-space-4);
  max-width: 960px;
  margin: 0 auto var(--fl-space-8);
  text-align: left;
}

.fl-manifesto-example-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--fl-radius-md);
  padding: var(--fl-space-4) var(--fl-space-5);
  font-size: var(--fl-text-sm);
  line-height: 1.55;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: var(--fl-space-3);
}

.fl-manifesto-example-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  opacity: 0.95;
}

.fl-manifesto-conclusion {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--fl-space-6);
  max-width: 600px;
  margin: 0 auto;
}

.fl-manifesto-conclusion-intro {
  font-size: var(--fl-text-md);
  opacity: 0.85;
  margin-bottom: var(--fl-space-2);
}

.fl-manifesto-conclusion-main {
  font-size: var(--fl-text-xl);
  font-weight: var(--fl-fw-bold);
  letter-spacing: 0.2px;
  margin: 0;
}

/* ── CTA Section ─────────────────────────────────────────── */
.fl-about-cta {
  background: var(--fl-bg-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-xl);
  padding: var(--fl-space-10) var(--fl-space-6);
  text-align: center;
  box-shadow: var(--fl-shadow-card);
  margin-top: var(--fl-space-12);
}

.fl-about-cta h2 {
  font-size: var(--fl-text-2xl);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  margin-bottom: var(--fl-space-2);
}

.fl-about-cta-tagline {
  font-size: var(--fl-text-lg);
  font-weight: var(--fl-fw-semibold);
  color: var(--fl-primary);
  margin-bottom: var(--fl-space-6);
}

.fl-about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--fl-space-4);
  flex-wrap: wrap;
}

/* ── Responsive Adaptations ──────────────────────────────── */
@media (max-width: 991.98px) {
  .fl-about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--fl-space-8);
  }

  .fl-about-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .fl-about-hero-actions {
    justify-content: center;
  }

  .fl-about-hero-visual {
    margin-top: var(--fl-space-4);
  }

  .fl-whatis-grid {
    grid-template-columns: 1fr;
    gap: var(--fl-space-6);
  }

  .fl-values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .fl-manifesto-examples {
    grid-template-columns: 1fr;
  }

  .fl-process-arrow {
    transform: rotate(90deg);
    margin: var(--fl-space-2) 0;
  }

  .fl-process-steps {
    flex-direction: column;
  }

  .fl-process-step {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .fl-about-hero {
    padding: var(--fl-space-8) 0;
  }

  .fl-story-card {
    padding: var(--fl-space-6) var(--fl-space-5);
  }

  .fl-about-floating-card {
    display: none; /* Hide floating overlays on small mobile screens to prevent overflow */
  }

  .fl-about-cta {
    padding: var(--fl-space-8) var(--fl-space-4);
  }
}
