/* =========================================
   PROFILE HERO
========================================= */

.profile-hero {
  background: var(--navy);

  color: var(--white);

  padding: 6rem 2rem 5rem;

  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  border: 90px solid rgba(245, 166, 35, 0.06);

  top: -220px;
  right: -180px;
}

.profile-hero::after {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  border: 70px solid rgba(11, 122, 99, 0.08);

  bottom: -180px;
  left: -120px;
}

.profile-hero-inner {
  max-width: 1100px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.profile-badge {
  display: inline-block;

  background: rgba(245, 166, 35, 0.12);

  border: 1px solid rgba(245, 166, 35, 0.3);

  color: var(--gold);

  padding: 0.45rem 1rem;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 1.5rem;

  text-transform: uppercase;
}

.profile-hero h1 {
  font-family: "Lora", serif;

  font-size: 4rem;

  line-height: 1.1;

  max-width: 850px;

  margin-bottom: 1rem;
}

.profile-hero h1 em {
  color: var(--gold);
}

.profile-hero p {
  max-width: 700px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;

  font-size: 1.05rem;

  margin-bottom: 2rem;
}

.profile-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   STATS
========================================= */

.profile-stats {
  background: var(--white);

  border-bottom: 1px solid var(--border);

  padding: 2rem;
}

.profile-stats-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1rem;
}

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

.profile-stat h3 {
  font-size: 2rem;

  color: var(--navy);

  font-weight: 800;
}

.profile-stat p {
  color: var(--text-muted);

  margin-top: 0.35rem;
}

/* =========================================
   ABOUT
========================================= */

.about-section {
  background: var(--cream);

  padding: 6rem 2rem;

  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: radial-gradient(rgba(245, 166, 35, 0.08), transparent 70%);

  top: -180px;
  right: -120px;
}

.about-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 3rem;

  align-items: center;

  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;

  min-height: 540px;

  object-fit: cover;

  border-radius: 24px;
}

.about-content {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 24px;

  padding: 2rem;
}

.about-points {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin-top: 2rem;
}

.about-point {
  display: flex;
  gap: 0.85rem;
}

.about-point span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--teal);

  margin-top: 0.45rem;

  flex-shrink: 0;
}

/* =========================================
   VISION
========================================= */

.vision-section {
  background: var(--white);

  padding: 6rem 2rem;
}

.vision-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.5rem;
}

.vision-card {
  background: var(--cream);

  border: 1px solid var(--border);

  border-radius: 22px;

  padding: 2.2rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.vision-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.vision-icon {
  width: 64px;
  height: 64px;

  border-radius: 18px;

  background: var(--gold-light);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.8rem;

  margin-bottom: 1.25rem;
}

.vision-card h3 {
  font-size: 1.35rem;

  color: var(--navy);

  margin-bottom: 0.85rem;
}

.vision-card p {
  color: var(--text-muted);

  line-height: 1.8;
}

/* =========================================
   VALUES
========================================= */

.values-section {
  background: var(--navy);

  padding: 6rem 2rem;
}

.values-section .section-title {
  color: var(--white);
}

.values-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 20px;

  padding: 2rem;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.08);
}

.value-icon {
  width: 60px;
  height: 60px;

  border-radius: 16px;

  background: rgba(245, 166, 35, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;

  margin-bottom: 1.2rem;
}

.value-card h3 {
  color: var(--white);

  margin-bottom: 0.75rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.65);

  line-height: 1.75;
}

/* =========================================
   JOURNEY
========================================= */

.profile-journey {
  background: var(--cream);

  padding: 6rem 2rem;
}

.journey-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  margin-top: 2rem;
}

.journey-card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 2rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.journey-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.07);
}

.journey-number {
  font-size: 2.5rem;

  font-weight: 800;

  color: rgba(245, 166, 35, 0.22);

  margin-bottom: 1rem;
}

.journey-card h3 {
  color: var(--navy);

  margin-bottom: 0.7rem;
}

.journey-card p {
  color: var(--text-muted);

  line-height: 1.75;
}

/* =========================================
   CTA
========================================= */

.profile-cta {
  background: var(--navy);

  padding: 6rem 2rem;
}

.profile-cta-box {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.profile-cta-box h2 {
  font-family: "Lora", serif;

  font-size: 2.8rem;

  color: var(--white);

  margin-bottom: 1rem;
}

.profile-cta-box p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin-bottom: 2rem;
}

/* =========================================
   ACCESSIBILITY
========================================= */

.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 3px solid rgba(245, 166, 35, 0.4);

  outline-offset: 4px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .profile-hero h1 {
    font-size: 2.7rem;
  }

  .profile-stats-inner,
  .about-inner,
  .vision-grid,
  .values-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 320px;
  }

  .profile-cta-box h2 {
    font-size: 2.1rem;
  }
}
