/* =====================================================
   VYSTRA CAPITAL - Design System & Styles
   Premium Institutional Aesthetic
   ===================================================== */

/* -- CSS Custom Properties (Design Tokens) -- */
:root {
  /* Colors - Two Color Theme */
  --color-primary: #1c96b0;
  /* Teal accent */
  --color-accent: #1a6b6b;
  /* Dark teal (from image 1) */
  --color-accent-hover: #145858;
  /* Darker teal on hover */
  --color-accent-light: #7fd4c7;
  /* Light teal accent for dark bg */

  /* Two Background Colors Only */
  --color-bg-dark: #1a6b6b;
  /* Dark teal (image 1) */
  --color-bg-light: #e8f5f5;
  /* Light mint (image 2) */

  /* Legacy aliases for consistency */
  --color-dark: #1a6b6b;
  --color-charcoal: #e8f5f5;
  --color-charcoal-light: #e8f5f5;
  /* Light blue section */

  /* Text Colors */
  --color-white: #ffffff;
  --color-text: #0a1628;
  /* Very dark navy for text */
  --color-text-light: #ffffff;
  --color-muted: #3a5a5d;
  /* Teal-tinted gray */
  --color-heading: #042a51;
  /* Navy for headings */
  --color-border: #7fd4c7;
  /* Teal border */
  --color-border-dark: #035b61;



  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Header/Footer Specifics */
  --color-header-footer-bg: #0c1e35;
  /* Deep Lava Blue / Dark Navy */
  --color-header-footer-text: #ffffff;

  /* Spacing - Increased for better visual separation */
  --section-padding: 140px;
  --container-width: 1400px;
  /* Fixed robust width, not fluid */
  --grid-gap: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
}

/* -- Reset & Base -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-charcoal-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-heading);
}

h1 {
  font-size: 4.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.5rem;
  /* Larger consistent size */
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

/* -- Layout -- */
/* Global Container - The Source of Truth */
.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  /* 40px padding marks the "Grid Line" */
  position: relative;
}

section {
  padding: var(--section-padding) 0;
}

/* -- Button -- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 36px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn:hover {
  background-color: var(--color-accent-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-medium);
  background-color: var(--color-header-footer-bg);
  /* Always visible */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav.scrolled {
  background-color: var(--color-header-footer-bg);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
  /* Aligns with .container padding */
  max-width: var(--container-width);
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.02em;
  transition: opacity var(--transition-fast);
}

.nav-logo-text:hover {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-accent-light);
}

.nav-cta {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav-cta:hover {
  color: var(--color-accent-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Hero Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Teal Overlay for brand consistency */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 107, 107, 0.85) 0%,
      rgba(12, 30, 53, 0.9) 100%);
  z-index: 1;
}

/* Hero Split Layout */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.hero-logo {
  width: 234px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-brand-name {
  font-family: var(--font-body);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.hero-right {
  flex: 1;
  max-width: 600px;
}

.hero-tagline {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 18px 40px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.btn-hero:hover {
  background-color: var(--color-white);
  color: var(--color-bg-dark);
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */

/* Section Header Pattern */
/* Section Header Pattern - Standard Left Alignment */
.section-header {
  margin-bottom: 30px;
  text-align: left;
}

/* Force Hero Left Align too for consistency */
/* Hero Grid Logic: Use the container naturally. Do NOT set margins. */
.hero .hero-content {
  text-align: left;
  max-width: 900px;
  /* Just limit width, do NOT margin-left: auto/0 if parent is flex center */
  margin-left: 0;
  /* Align to left edge of container */
  padding-left: 0;
}

/* Ensure container inside hero is what constrains it */
.hero .container {
  width: 100%;
  /* Ensure container fills width to align content left */
  display: flex;
  align-items: center;
  /* Vertical center */
  justify-content: flex-start;
  /* Horizontal START */
}

.hero h1 {
  text-align: left;
  margin-left: 0;
}

.hero h1 {
  text-align: left;
}

.hero-features {
  justify-content: flex-start;
  /* Ensure features align left */
}


.section-label {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  display: block;
}

/* Who We Are - LIGHT SECTION */
.who-we-are {
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(26, 107, 107, 0.15);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark at bottom */
.who-we-are::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

.who-we-are h2 {
  color: var(--color-heading);
}

.who-we-are .section-label {
  color: var(--color-accent);
}

.who-we-are-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.who-we-are-text {
  font-size: 1.5rem;
  color: var(--color-text);
  max-width: 100%;
  line-height: 1.8;
  margin-bottom: 30px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  width: 100%;
}

.principle-item {
  padding: 30px 24px;
  background-color: #ffffff;
  border: 2px solid rgba(26, 107, 107, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}

.principle-item i,
.principle-item svg {
  width: 64px;
  height: 64px;
  color: var(--color-accent);
  stroke-width: 1.5;
  background-color: rgba(26, 107, 107, 0.1);
  padding: 14px;
  border-radius: 50%;
}

.principle-item h4 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: #0a2540;
  margin: 0;
}

/* Thesis - DARK SECTION */
.thesis {
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.thesis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.thesis h2 {
  color: var(--color-white);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.thesis .section-label {
  color: var(--color-accent-light);
}

.thesis-intro {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.7;
}

.thesis-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.thesis-item {
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.thesis-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thesis-item i,
.thesis-item svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent-light);
  stroke: var(--color-accent-light);
  margin-bottom: 16px;
}

.thesis-item h3 {
  font-size: 1.375rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.thesis-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.7;
}

/* Acquisition Criteria - LIGHT SECTION */
.criteria {
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(26, 107, 107, 0.15);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.criteria::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.criteria h2 {
  color: var(--color-heading);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.criteria .section-label {
  color: var(--color-accent);
}

.criteria-intro {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 30px;
  line-height: 1.7;
}

.criteria-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.criteria-column {
  text-align: left;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  border: 2px solid rgba(26, 107, 107, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.criteria-column h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
}

.criteria-list {
  list-style: none;
  text-align: left;
  counter-reset: criteria-counter;
}

.criteria-list li {
  padding: 14px 0 14px 50px;
  border-bottom: 1px solid rgba(26, 107, 107, 0.1);
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1.6;
  position: relative;
  counter-increment: criteria-counter;
}

.criteria-list li::before {
  content: counter(criteria-counter);
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.criteria-list li:first-child {
  padding-top: 0;
}

.criteria-list li:first-child::before {
  top: 0;
}

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

.criteria-list li strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Legacy grid styles (keeping for backward compatibility) */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.criteria-item {
  padding: 40px;
  border: 2px solid rgba(26, 107, 107, 0.2);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.criteria-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.criteria-item p {
  color: var(--color-muted);
  font-size: 1rem;
}

/* Hero with unique subtle geometric pattern */
.hero {
  /* Dark teal base #1a6b6b with subtle pattern overlay */
  background-color: #1a6b6b;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  /* Grid size 40px */
  background-position: center;
  color: var(--color-white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle overlay to soften it */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(26, 107, 107, 0.4) 100%);
  pointer-events: none;
}

/* =====================================================
   TIMELINE - DARK SECTION
   ===================================================== */
.timeline {
  background-color: var(--color-bg-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Cityscape photo watermark */
.timeline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.timeline h2 {
  color: var(--color-white);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.timeline .section-label {
  color: var(--color-accent-light);
}

.timeline-intro {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Ensure Timeline spans full width */
.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 50px;
  width: 100%;
  /* Fill full container */
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.timeline-step {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-dark);
  /* Match bg to hide line behind number */
  border: 1px solid var(--color-accent-light);
  border-radius: 50%;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 2;
}

.timeline-icon {
  position: absolute;
  top: -85px;
  /* Position above the number */
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent-light);
  background-color: var(--color-bg-dark);
  /* background to cover line if needed */
  padding: 0 5px;
  z-index: 1;
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
}

.timeline-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  display: block;
}

.timeline-intro {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
}

.timeline-intro strong {
  color: var(--color-white);
}

.approach-expectations {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-expectations h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.approach-expectations ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.approach-expectations li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
}

.approach-expectations li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent-light);
}

/* =====================================================
   PARTNERSHIP & LEGACY - LIGHT SECTION
   ===================================================== */
.partnership {
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(26, 107, 107, 0.15);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.partnership::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.partnership .section-label {
  color: var(--color-accent);
}

.partnership h2 {
  color: var(--color-heading);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.partnership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.partnership-text {
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.7;
}

.partnership-values {
  display: grid;
  gap: 30px;
}

.value-item {
  padding: 24px 24px 24px 24px;
  border-left: 4px solid var(--color-accent);
  background-color: #ffffff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a2540;
}

.value-item p {
  color: var(--color-text);
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =====================================================
   TEAM SECTION - DARK
   ===================================================== */
.team {
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.team h2 {
  color: var(--color-white);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.team .section-label {
  color: var(--color-accent-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 40px;
  width: 100%;
}

.team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  /* Allow it to be wider */
}

.team-member {
  text-align: left;
  /* Ensure left alignment */
}

.team-grid-2 .team-member {
  text-align: left;
}

.team-photo {
  width: 200px;
  height: 250px;
  margin: 0 auto 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

.team-grid-2 .team-photo {
  margin: 0 0 24px 0;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #0A66C2;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-bio {
  flex-grow: 1;
}

.team-linkedin:hover {
  background-color: #004182;
  color: #ffffff;
}

.team-linkedin svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   FAQ ACCORDION - LIGHT SECTION
   ===================================================== */
.faq {
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(26, 107, 107, 0.15);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.faq h2 {
  color: var(--color-heading);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.faq .section-label {
  color: var(--color-accent);
}

.faq-list {
  max-width: 100%;
  margin: 30px 0 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 107, 107, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer-content {
  padding-bottom: 24px;
  color: #1a3a40;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* =====================================================
   CONTACT SECTION - DARK BLUE (Matching Header/Footer)
   ===================================================== */
.contact {
  background-color: var(--color-header-footer-bg);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Cityscape photo watermark */
.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: url('hero-cityscape.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

.contact h2 {
  color: var(--color-white);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact .section-label {
  color: var(--color-accent-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--color-accent-light);
  margin-top: 0.5rem;
  transition: color var(--transition-fast);
}

.contact-email:hover {
  color: var(--color-white);
}


.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* Grey/White border as requested */
  background-color: transparent;
  /* Assuming they want it to look like the screenshot but with a border, or maybe keeping the color but adding border? The request says "give this box a grey/white border". I'll keep the bg but add the border. */
  background-color: var(--color-accent);
  /* Keeping original accent color */
  color: var(--color-white);
}

.form-submit:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-white);
}

.google-form-embed {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  overflow: hidden;
}

.google-form-embed iframe {
  display: block;
}

/* =====================================================
   FOOTER - DARK BLUE SECTION
   ===================================================== */
.footer {
  background-color: var(--color-header-footer-bg);
  border-top: none;
  padding: 40px 0;
  color: var(--color-header-footer-text);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: auto;
}

.footer-text-logo {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}


.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.footer-contact a {
  font-size: 0.9375rem;
  color: #7fd4c7;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-text {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 16px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --grid-gap: 40px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* Navigation Mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-dark);
    border-top: 1px solid var(--color-border);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Content Grids */
  .who-we-are-content,
  .thesis-content,
  .partnership-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .criteria-grid,
  .criteria-columns,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .thesis-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Hero split layout mobile */
  .hero-split {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-right {
    max-width: 100%;
    text-align: center;
  }

  .hero-logo {
    width: 180px;
  }

  .hero-brand-name {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Timeline Mobile - Clean Layout */
  .timeline-track {
    flex-direction: column;
    gap: 40px;
    padding-top: 0;
    padding-left: 0;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-step {
    text-align: left;
    padding: 0 0 0 60px;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* Number badge on the line */
  .timeline-step::before {
    top: 0;
    left: -16px;
    transform: none;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-accent-light);
  }

  /* Icon next to number */
  .timeline-icon {
    display: block !important;
    position: absolute;
    top: 2px;
    left: 20px;
    transform: none;
    background-color: transparent;
    padding: 0;
  }

  .timeline-icon svg {
    width: 22px;
    height: 22px;
  }

  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-label {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .btn {
    padding: 16px 28px;
    font-size: 0.8125rem;
  }

  /* Hero mobile adjustments */
  .hero-split {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-logo {
    width: 150px;
  }

  .hero-brand-name {
    font-size: 1.75rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  /* Principles/Thesis single column on small mobile */
  .principles-grid,
  .thesis-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Criteria columns stack */
  .criteria-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .criteria-column {
    padding: 24px;
  }

  /* Partnership text size */
  .partnership-text,
  .who-we-are-text,
  .thesis-intro,
  .criteria-intro,
  .contact-info p {
    font-size: 1.125rem;
  }

  /* Timeline icons on small mobile - keep visible but smaller */
  .timeline-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
  .hero-split {
    gap: 40px;
  }

  .hero-logo {
    width: 180px;
  }

  .principles-grid,
  .thesis-content {
    grid-template-columns: repeat(2, 1fr);
  }
}