/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global link styles - white by default */
a {
  color: var(--bg-white);
  text-decoration: none;
  
}

a:hover {
  color: var(--brand-red);
}

:root {
  /* Munegu Sport Brand Colors - Extracted from PDF */
  --brand-red: #db1c3a;
  --brand-dark-red: #4d1724;
  --primary-color: #1a1a1a;
  --secondary-color: #2a2a2a;
  --text-dark: #333333;
  --text-medium: #444444;
  --text-normal: #555555;
  --text-light: #666666;
  --text-lighter: #888888;
  --bg-white: #ffffff;
  --bg-lightest: #f5f5f5;
  --bg-light: #f4f4f4;
  --bg-lighter: #ededed;
  --bg-gray: #e5e5e5;
  --border-light: #dfdfdf;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--bg-white);
  background-color: var(--brand-dark-red);
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

/* Page Container - Tab-based system */
.page-container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 70px;
  min-height: 100vh;
}

/* Individual Pages */
.page {
  display: none;
  min-height: calc(100vh - 70px);
  padding: 4rem 2rem;
  overflow: visible;
}

.page.active-page {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Special handling for hero page */
#hero.active-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--brand-red);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 0;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-dark-red);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero/Home Page */
#hero {
  background: var(--brand-dark-red);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: visible;
}

#hero.active-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 0;
  border-left: 4px solid var(--brand-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-stat {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--brand-red);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--bg-white);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  display: none;
}

.about-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--bg-white);
  margin: 1rem 0;
  opacity: 0.9;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  opacity: 0.9;
}

.about-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
}

.league-tags,
.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.league-tag,
.sport-tag {
  background: rgba(219, 28, 58, 0.2);
  color: var(--bg-white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--brand-red);
}

.sport-tag-more {
  color: var(--brand-red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  padding: 0.4rem 0.8rem;
}

.about-tagline {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  border-top: 2px solid var(--brand-red);
}

.about-tagline h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--bg-white);
  letter-spacing: 2px;
}

.about-tagline .highlight {
  color: var(--brand-red);
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: auto;
  height: 80px;
  max-width: 150px;
  margin-bottom: 2rem;
  object-fit: contain;
  
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  
}

.hero-locations {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  
}

.separator {
  margin: 0 1.5rem;
  color: var(--bg-white);
}

/* Mission Section */
.mission-section {
  padding: 6rem 2rem;
  background: var(--brand-red);
  text-align: center;
  color: var(--bg-white);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-white);
}

.mission-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--bg-gray);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 400;
}

.mission-statement {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 2rem 0;
  line-height: 1.3;
}

.mission-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--bg-gray);
}

/* Pillars Section */
.pillars-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.pillars-section .section-title {
  color: var(--bg-white);
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  
  border-top: 6px solid var(--brand-red);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(219, 28, 58, 0.2);
}

.pillar-number {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-red);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillar-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--bg-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.pillar-list {
  list-style: none;
  padding: 0;
}

.pillar-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: var(--bg-white);
  font-weight: 500;
}

.pillar-list li:last-child {
  border-bottom: none;
}

.pillar-list li::before {
  content: '→';
  color: var(--brand-red);
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.leadership-section .section-title {
  color: var(--bg-white);
  text-align: center;
}

/* Leadership Rows */
.leadership-row {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.cofounders-row {
  grid-template-columns: repeat(2, 1fr);
}

.advisor-row {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 968px) {
  .cofounders-row {
    grid-template-columns: 1fr;
  }
}

.leader-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 0;
  border-left: 6px solid var(--brand-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.leader-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.leader-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.leader-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.8;
}

.leader-bio {
  text-align: left;
  margin-top: 1.5rem;
}

.bio-category {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 1.5rem 0 0.5rem;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 0.3rem;
}

.leader-bio ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.leader-bio ul li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
  opacity: 0.9;
}

.leader-bio ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
}

.leader-photo-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.leader-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--brand-red);
}

.leader-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.leader-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-group h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.detail-group p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.detail-group.highlight {
  background: rgba(219, 28, 58, 0.2);
  padding: 1.5rem;
  border-radius: 0;
  border-left: 4px solid var(--brand-red);
}

.detail-group.highlight p {
  font-weight: 600;
  color: var(--brand-red);
}

/* Advisor Section */
.advisor-section {
  padding: 6rem 2rem;
  background: var(--brand-dark-red);
  color: var(--bg-white);
}

.advisor-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 0;
  margin-top: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.advisor-photo-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.advisor-photo {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 0;
  border: 4px solid var(--bg-white);
  object-fit: contain;
}

.advisor-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.advisor-content {
  display: grid;
  gap: 3rem;
}

.club-history h4,
.achievements h4,
.current-role h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.club-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.years {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--bg-gray);
  font-weight: 700;
}

.club-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
  text-transform: uppercase;
}

.achievements ul {
  list-style: none;
  padding: 0;
}

.achievements li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: var(--bg-gray);
  font-family: 'Montserrat', sans-serif;
}

.achievements li::before {
  content: '★';
  color: var(--bg-white);
  font-weight: bold;
  margin-right: 0.75rem;
}

.current-role p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bg-gray);
  font-weight: 500;
}

/* Cases Section */
.cases-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.cases-section .section-title {
  color: var(--bg-white);
  text-align: center;
}

/* Advisory Detail Section */
.advisory-detail-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.advisory-detail-section .section-title {
  color: var(--bg-white);
  text-align: center;
  margin-bottom: 4rem;
}

.advisory-showcase,
.consulting-showcase {
  margin-bottom: 4rem;
}

.subsection-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-red);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subsection-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--bg-gray);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.case-card.standalone {
  max-width: 800px;
  margin: 0 auto;
}

/* Talent Section */
.talent-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.talent-section .section-title {
  color: var(--bg-white);
  text-align: center;
}

.section-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--bg-gray);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Talent Row - Side by Side */
.talent-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .talent-row {
    grid-template-columns: 1fr;
  }
}

/* Commercial Section */
.commercial-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
}

.commercial-section .section-title {
  color: var(--bg-white);
  text-align: center;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0 4rem;
  text-align: center;
  width: 100%;
}

.coming-soon i {
  font-size: 5rem;
  color: var(--brand-red);
  margin: 0 auto 2rem;
  display: block;
}

.coming-soon h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--bg-white);
  margin: 0 auto;
  letter-spacing: 2px;
  text-align: center;
}

.commercial-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--bg-white);
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
}

.coming-soon-content i {
  font-size: 4rem;
  color: var(--brand-red);
  margin-bottom: 2rem;
}

.coming-soon-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coming-soon-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--bg-gray);
  line-height: 1.8;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.case-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  
  overflow: hidden;
  border-top: 4px solid var(--brand-red);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(219, 28, 58, 0.2);
}

.case-photo {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  background-color: rgba(255, 255, 255, 0.03);
}

.case-content {
  padding: 2.5rem;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.case-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--bg-gray);
  font-weight: 700;
  text-transform: uppercase;
}

.case-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--bg-gray);
  margin-bottom: 1rem;
}

.case-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--bg-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.case-value {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-red);
  margin: 1rem 0;
}

.case-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--bg-white);
  font-weight: 700;
  text-transform: uppercase;
}

.case-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.case-highlights li {
  padding: 0.5rem 0;
  color: var(--bg-white);
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.case-highlights li::before {
  content: '✓';
  color: var(--brand-red);
  font-weight: bold;
  margin-right: 0.75rem;
}

.case-partnership {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: var(--bg-gray);
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
}

/* Consulting Section */
.consulting-section {
  padding: 6rem 2rem;
  background: var(--brand-red);
  text-align: center;
  color: var(--bg-white);
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--bg-white);
  text-align: center;
  margin: 1rem auto 3rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 800px;
}

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

@media (max-width: 968px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }
}

.consulting-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  
}

.consulting-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--bg-white);
}

.consulting-logo {
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  object-position: center;
}

.consulting-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.country {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--bg-gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background-color: var(--brand-dark-red);
  text-align: center;
}

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

.contact-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--bg-gray);
  margin-bottom: 3rem;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 0;
  border-top: 6px solid var(--brand-red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.contact-info {
  margin: 0.75rem 0;
}

.contact-info a {
  font-family: 'Montserrat', sans-serif;
  color: var(--bg-white);
  text-decoration: none;
  font-size: 1.1rem;
  
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--brand-red);
}

.website {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.website a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  letter-spacing: 2px;
  
  text-transform: uppercase;
}

.website a:hover {
  color: var(--bg-white);
  letter-spacing: 4px;
}

/* Animations */


/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .leadership-grid,
  .cases-grid,
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .clubs-grid {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    width: 150px;
    height: 150px;
  }
}

/* Our Projects Section */
.projects-section {
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid rgba(219, 28, 58, 0.2);
}

.projects-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.projects-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.projects-section-title i {
  font-size: 2rem;
}

.projects-section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-style: italic;
}

/* What We Do Section */
.what-we-do-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 2px solid rgba(219, 28, 58, 0.2);
}

.what-we-do-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 2px solid rgba(219, 28, 58, 0.3);
  
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  font-size: 3rem;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
}

.service-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Leadership Advisory Section */
.leadership-advisory-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 2px solid rgba(219, 28, 58, 0.3);
}

.advisory-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-align: center;
}

/* Contact Page Enhancements */
.contact-cta {
  text-align: center;
  margin: 3rem 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  background: var(--brand-red);
  color: var(--bg-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
  text-decoration: none;
}

.primary-button:hover {
  background: #c91836;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(219, 28, 58, 0.4);
}

.primary-button i {
  font-size: 1.2rem;
}

.office-address {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 2px solid rgba(219, 28, 58, 0.2);
  margin: 4rem auto;
  max-width: 600px;
}

.address-icon {
  font-size: 3rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.office-address h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.address-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--bg-white);
  line-height: 1.8;
  opacity: 0.9;
}

/* Smooth Scrolling for Safari */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    html {
      scroll-behavior: auto;
    }
  }
}

/* iOS and Mobile Optimizations */
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  -webkit-overflow-scrolling: touch;
}

.page {
  -webkit-overflow-scrolling: touch;
  will-change: auto;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .page {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Reduce image sizes on mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  .case-photo,
  .leader-photo,
  .consulting-logo {
    will-change: auto;
    transform: none !important;
  }
}

/* Prevent zoom on iOS */
input, select, textarea {
  font-size: 16px !important;
}

/* CRITICAL: iPhone and Mobile Fixes */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh !important;
  }
  
  .page-container {
    position: relative !important;
    padding-top: 70px !important;
    overflow: visible !important;
    height: auto !important;
  }
  
  .page {
    display: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding: 2rem 1rem !important;
  }
  
  .page.active-page {
    display: block !important;
  }
  
  #hero.active-page {
    display: flex !important;
    min-height: calc(100vh - 70px) !important;
    height: auto !important;
  }
  
  /* Navigation fixes for mobile */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 0.75rem 0 !important;
  }
  
  .nav-container {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0 1rem !important;
  }
  
  .nav-logo {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  
  .nav-links a {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.6rem !important;
    white-space: nowrap !important;
  }
  
  /* Ensure navigation is always visible */
  .nav-link {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Hero section mobile */
  .hero-title {
    font-size: 2rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-locations {
    font-size: 0.85rem !important;
    flex-wrap: wrap !important;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  
  /* Grid adjustments */
  .about-grid,
  .services-grid,
  .leadership-row,
  .talent-row,
  .consulting-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Image optimization */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .case-photo,
  .leader-photo,
  .consulting-logo {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
}

/* iPhone specific viewport fixes */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
  
  #hero.active-page {
    min-height: -webkit-fill-available;
  }
}

/* Experience Highlight Styling */
.experience-highlight {
  margin: 1rem 0;
  padding: 1.5rem;
  background: rgba(219, 28, 58, 0.1);
  border-left: 4px solid var(--brand-red);
  text-align: center;
}

.experience-stat {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.experience-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--bg-white);
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

/* ========================================
   SELECTED WORK SECTION STYLES
   ======================================== */

/* Work Grid Layout */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 0;
}

/* Work Card - Clean, minimal styling */
.work-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.work-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(219, 28, 58, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Work Card Category Label */
.work-category {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(219, 28, 58, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

/* Work Card Headline */
.work-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bg-white);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

/* Work Card Description */
.work-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: auto;
  flex-grow: 1;
}

/* Work Visual Container */
.work-visual {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* Work Logo/Image */
.work-logo {
  max-width: 180px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%) brightness(0.95);
  transition: all 0.3s ease;
}

.work-card:hover .work-logo {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Mobile Responsive - Work Grid */
@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .work-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }
  
  .work-headline {
    font-size: 1.15rem;
  }
  
  .work-description {
    font-size: 0.9rem;
  }
  
  .work-visual {
    min-height: 100px;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  
  .work-logo {
    max-width: 150px;
    max-height: 120px;
  }
}

/* Ensure equal card heights on desktop */
@media (min-width: 769px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .work-card {
    height: 100%;
  }
}

/* ========================================
   ENHANCED SELECTED WORK SECTION STYLES
   ======================================== */

/* Work Subsections */
.work-subsection {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.subsection-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* ========================================
   CLUB ADVISORY CARDS - COMPACT, MINIMAL
   ======================================== */

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

.club-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.club-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(219, 28, 58, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.club-card-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.club-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-white);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.club-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.club-footer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(219, 28, 58, 0.9);
  font-weight: 500;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.club-visual {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.club-logo {
  max-width: 140px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(15%) brightness(0.95);
  transition: all 0.3s ease;
}

.club-card:hover .club-logo {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

/* ========================================
   TALENT MANAGEMENT CARDS - PREMIUM, DETAILED
   ======================================== */

.talent-subsection {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(219, 28, 58, 0.3);
}

.talent-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.talent-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(219, 28, 58, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Talent Header */
.talent-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.talent-photo-wrapper {
  flex-shrink: 0;
}

.talent-photo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(219, 28, 58, 0.3);
}

.talent-title-block {
  flex-grow: 1;
}

.talent-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.talent-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: rgba(219, 28, 58, 0.95);
  font-weight: 500;
  margin: 0;
}

/* Talent Body Sections */
.talent-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.talent-section {
  padding: 1.5rem 0;
}

.commercial-section {
  background: rgba(219, 28, 58, 0.05);
  padding: 1.75rem;
  border-radius: 8px;
  border-left: 3px solid var(--brand-red);
}

.talent-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.talent-commercial-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.talent-emphasis {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(219, 28, 58, 0.95);
  font-style: italic;
  margin-top: 1rem;
  font-weight: 500;
}

/* Profile Section */
.profile-section {
  padding: 1.5rem 0;
}

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

.achievement-col p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.4rem 0;
}

/* ========================================
   MOBILE RESPONSIVE - SELECTED WORK
   ======================================== */

@media (max-width: 768px) {
  .work-subsection {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .subsection-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Club Cards - Stack vertically */
  .club-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .club-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .club-headline {
    font-size: 1.1rem;
  }

  .club-description {
    font-size: 0.875rem;
  }

  .club-visual {
    min-height: 80px;
  }

  .club-logo {
    max-width: 120px;
    max-height: 90px;
  }

  /* Talent Cards - Mobile layout */
  .talent-subsection {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .talent-card {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }

  .talent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .talent-photo {
    width: 100px;
    height: 100px;
  }

  .talent-name {
    font-size: 1.6rem;
  }

  .talent-role {
    font-size: 1rem;
  }

  .talent-body {
    gap: 1.5rem;
  }

  .commercial-section {
    padding: 1.25rem;
  }

  .talent-section-title {
    font-size: 0.9rem;
  }

  .talent-commercial-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .talent-achievements {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .achievement-col p {
    font-size: 0.85rem;
    line-height: 1.7;
  }
}

/* Desktop optimization */
@media (min-width: 769px) {
  .club-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   HIGH-IMPACT TEXT-DRIVEN SELECTED WORK
   ======================================== */

/* Section Intro - Short, Sharp */
.section-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

/* Activity Blocks Container */
.activity-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

/* Individual Activity Block */
.activity-block {
  display: flex;
  gap: 2rem;
  padding: 3rem 0;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Stagger animation for each block */
.activity-block:nth-child(1) {
  animation-delay: 0.1s;
}

.activity-block:nth-child(2) {
  animation-delay: 0.3s;
}

.activity-block:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vertical Accent Line */
.block-accent {
  width: 4px;
  background: linear-gradient(180deg, var(--brand-red) 0%, rgba(219, 28, 58, 0.3) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Block Content Area */
.block-content {
  flex-grow: 1;
  padding-left: 1rem;
}

/* Block Title */
.block-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Block Main Line - Bold Statement */
.block-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--bg-white);
  margin-bottom: 1.75rem;
  letter-spacing: 0.3px;
}

/* Supporting Points - Tight, Scannable */
.block-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.block-points li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.5rem;
  position: relative;
}

.block-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Hover Effect on Blocks */
.activity-block:hover {
  transform: translateX(10px);
}

.activity-block:hover .block-accent {
  background: var(--brand-red);
  box-shadow: 0 0 20px rgba(219, 28, 58, 0.4);
}

/* ========================================
   MOBILE RESPONSIVE - ACTIVITY BLOCKS
   ======================================== */

@media (max-width: 768px) {
  .section-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: left;
  }

  .activity-blocks {
    gap: 3rem;
    margin-top: 3rem;
  }

  .activity-block {
    gap: 1.25rem;
    padding: 2rem 0;
  }

  .block-accent {
    width: 3px;
  }

  .block-content {
    padding-left: 0.75rem;
  }

  .block-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .block-main {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .block-points {
    gap: 0.85rem;
  }

  .block-points li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.25rem;
  }

  .block-points li::before {
    font-size: 1rem;
  }

  /* Disable transform on mobile */
  .activity-block:hover {
    transform: none;
  }
}

/* Desktop Refinements */
@media (min-width: 769px) {
  .block-content {
    max-width: 850px;
  }

  .activity-blocks {
    padding: 0 2rem;
  }
}
/* ========================================
   VISUAL FLOW SELECTED WORK REDESIGN
   ======================================== */

/* Network Background Pattern - Subtle */
.network-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(219, 28, 58, 0.3) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(219, 28, 58, 0.3) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(219, 28, 58, 0.3) 2px, transparent 2px);
  background-size: 200px 200px, 250px 250px, 180px 180px;
  pointer-events: none;
  z-index: 0;
}

#projects {
  position: relative;
  overflow: hidden;
}

#projects .container {
  position: relative;
  z-index: 1;
}

/* Activity Flow Container */
.activity-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem 1rem;
  position: relative;
}

/* Flow Block - Individual */
.flow-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  animation: flowFadeIn 0.8s ease forwards;
  position: relative;
}

/* Stagger animations */
.flow-block.block-1 {
  animation-delay: 0.2s;
}

.flow-block.block-2 {
  animation-delay: 0.5s;
  transform: translateY(-20px); /* Offset for visual interest */
}

.flow-block.block-3 {
  animation-delay: 0.8s;
}

@keyframes flowFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Block Icon - Minimal Line Style */
.block-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: var(--brand-red);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.flow-block:hover .block-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.block-icon svg {
  width: 100%;
  height: 100%;
}

/* Block Panel - Content Container */
.block-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  width: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.block-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-block:hover .block-panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(219, 28, 58, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flow-block:hover .block-panel::before {
  opacity: 1;
}

/* Flow Title */
.flow-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Flow Main - Bold Statement (REDUCED TEXT) */
.flow-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

/* Flow Points - Scannable Modules (REDUCED) */
.flow-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.flow-points span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.flow-points span::before {
  content: '→';
  margin-right: 0.5rem;
  color: var(--brand-red);
  font-weight: 700;
}

/* Flow Connector - Arrows Between Blocks */
.flow-connector {
  flex-shrink: 0;
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: connectorFadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes connectorFadeIn {
  from {
    opacity: 0;
    transform: scaleX(0.3);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.connector-svg {
  width: 100%;
  height: 100%;
  color: rgba(219, 28, 58, 0.5);
}

.flow-connector:hover .connector-svg {
  color: var(--brand-red);
}

/* Animate connector line on load */
.connector-svg line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 1.5s ease forwards;
  animation-delay: 1.2s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ========================================
   MOBILE RESPONSIVE - FLOW LAYOUT
   ======================================== */

@media (max-width: 1024px) {
  .activity-flow {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }

  .flow-block {
    width: 100%;
    max-width: 500px;
  }

  .flow-block.block-2 {
    transform: translateY(0);
  }

  /* Vertical connectors on mobile */
  .flow-connector {
    width: 40px;
    height: 60px;
    transform: rotate(90deg);
  }

  .block-icon {
    width: 70px;
    height: 70px;
  }

  .block-panel {
    padding: 1.75rem 1.5rem;
  }

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

  .flow-main {
    font-size: 1rem;
  }

  .flow-points span {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .section-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .activity-flow {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
  }

  .block-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }

  .block-panel {
    padding: 1.5rem 1.25rem;
  }

  .flow-title {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
  }

  .flow-main {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .flow-points {
    gap: 0.65rem;
  }

  .flow-points span {
    font-size: 0.85rem;
  }
}

/* Desktop Refinements */
@media (min-width: 1025px) {
  .activity-flow {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .flow-block {
    max-width: 320px;
  }
}

/* ========================================
   LEADERSHIP ENHANCEMENTS - SEASONS & FLAGS
   ======================================== */

/* Seasons Badge */
.seasons-badge {
  display: inline-block;
  background: rgba(219, 28, 58, 0.15);
  color: var(--brand-red);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
}

/* Language Flags Container */
.language-flags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.flag-item {
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: inline-block;
}

.flag-item:hover {
  transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .seasons-badge {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: fit-content;
  }

  .flag-item {
    font-size: 1.5rem;
  }
}
