/* ============================
   Dr. Alca Dokuzoğlu - Premium Liquid Glass Design
   ============================ */

:root {
  --alca-pink: var(--color-pink-vibrant);
  --alca-pink-glow: hsla(var(--h-pink), 85%, 60%, 0.3);
  --alca-gold: #F59E0B;
  --alca-gold-glow: rgba(245, 158, 11, 0.3);
  --alca-purple: #8B5CF6;
  --alca-orange: #F97316;
  
  /* Liquid Glass Variables */
  --liquid-glass-bg: rgba(255, 255, 255, 0.03);
  --liquid-glass-border: rgba(255, 255, 255, 0.08);
  --liquid-glass-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  --liquid-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

body.alca-page {
  background-color: #020617;
  background: linear-gradient(180deg, #020617 0%, #0A0F1A 50%, #0F172A 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

/* --- Animated Liquid Background --- */
.alca-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: #020617;
}

.alca-blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.35;
  /* Removed mix-blend-mode for better performance */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.blob-1 { 
  top: -20%; 
  right: -15%; 
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), transparent 70%);
  animation: blob-float-1 30s ease-in-out infinite;
}

.blob-2 { 
  bottom: 20%; 
  left: -20%; 
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  animation: blob-float-2 35s ease-in-out infinite;
}

.blob-3 { 
  top: 40%; 
  right: 30%; 
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  animation: blob-float-3 28s ease-in-out infinite;
}

/* Simplified blob animations - only translate, no rotate/border-radius changes */
@keyframes blob-float-1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, 60px, 0) scale(1.05); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-30px, -40px, 0) scale(1.08); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-20px, 30px, 0) scale(1.1); }
}

/* --- Main Container --- */
.alca-main {
  padding-top: 120px;
  padding-bottom: 100px;
}

.alca-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================
   HERO PROFILE SECTION
   ======================== */
.alca-hero {
  padding: 60px 0 80px;
  position: relative;
}

.alca-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

/* ========================
   LIQUID GLASS PROFILE CARD
   ======================== */
.alca-profile-card {
  position: sticky;
  top: 120px;
  text-align: center;
  
  /* Optimized Glass Effect */
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--liquid-glass-border);
  border-radius: 28px;
  padding: 40px 32px;
  
  /* GPU acceleration */
  transform: translateZ(0);
  will-change: auto;
  
  /* Premium Shadow */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  
  overflow: hidden;
}

.alca-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.alca-profile-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--liquid-glass-shine);
  pointer-events: none;
}

/* Logo */
.alca-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Photo with Animated Ring */
.alca-photo-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
}

.alca-photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #F59E0B,
    #F97316,
    var(--alca-pink),
    var(--alca-purple),
    #F59E0B
  );
  animation: ring-rotate 6s linear infinite;
  opacity: 0.9;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.alca-photo-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 50%;
}

.alca-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.alca-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.alca-title-tag {
  display: inline-block;
  font-size: 0.8rem;
  background: linear-gradient(90deg, #F59E0B, #F97316, var(--alca-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Quick Stats - Liquid Glass Cards */
.alca-quick-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quick-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.quick-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateX(6px);
}

.quick-stat:hover::before {
  left: 100%;
}

.quick-stat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.quick-stat-icon.experience { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.quick-stat-icon.education { background: linear-gradient(135deg, #F97316, #FB923C); }
.quick-stat-icon.award { background: linear-gradient(135deg, var(--alca-purple), #A78BFA); }

.quick-stat-icon svg,
.section-icon svg,
.highlight-icon svg,
.research-icon svg,
.special-badge-icon svg {
  color: #fff;
  stroke: currentColor;
}

.highlight-icon {
  color: var(--alca-purple);
}

.research-icon svg {
  color: var(--alca-purple);
}

.special-badge-icon svg {
  color: var(--alca-gold);
}

.role-tag svg {
  vertical-align: middle;
  margin-right: 4px;
}

.edu-year svg {
  vertical-align: middle;
  margin-right: 4px;
  color: var(--text-muted);
}

.quick-stat-text {
  text-align: left;
}

.quick-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.quick-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================
   CONTENT SECTIONS (Right Side)
   ======================== */
.alca-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ========================
   LIQUID GLASS SECTION CARDS
   ======================== */
.alca-section {
  position: relative;
  overflow: hidden;
  
  /* Optimized Glass Effect */
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--liquid-glass-border);
  border-radius: 24px;
  padding: 36px;
  
  /* GPU acceleration */
  transform: translateZ(0);
  
  /* Premium Shadow */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  
  /* Simplified Transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Top shine line */
.alca-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

/* Glass shine overlay */
.alca-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 24px 24px 0 0;
}

.alca-section:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Section Color Variants - Yellow -> Orange -> Pink -> Purple */
.alca-section.career::before { background: linear-gradient(180deg, #F59E0B, #FBBF24); }
.alca-section.education::before { background: linear-gradient(180deg, #F97316, #FB923C); }
.alca-section.leadership::before { background: linear-gradient(180deg, var(--alca-pink), #EC4899); }
.alca-section.research::before { background: linear-gradient(180deg, var(--alca-purple), #6366F1); }

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.section-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.section-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
}

.career .section-icon { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.education .section-icon { background: linear-gradient(135deg, #F97316, #FB923C); }
.leadership .section-icon { background: linear-gradient(135deg, var(--alca-pink), #EC4899); }
.research .section-icon { background: linear-gradient(135deg, var(--alca-purple), #6366F1); }

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Timeline Entries - Glass Cards */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.timeline-entry:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255,255,255,0.08);
  transform: translateX(8px);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(90deg, #F59E0B, #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 4px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.timeline-org {
  font-size: 0.9rem;
  color: var(--alca-gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Role Tags - Liquid Pills */
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--alca-gold);
  font-weight: 500;
  transition: all 0.3s ease;
}

.role-tag:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

/* Education Cards - Liquid Glass Grid */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.edu-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.edu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.edu-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.edu-degree {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.edu-field {
  font-size: 0.85rem;
  background: linear-gradient(90deg, #F97316, var(--alca-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 500;
}

.edu-institution {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.edu-year {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Special Badge - Fulbright */
.special-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.special-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.special-badge:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.12));
  transform: scale(1.02);
}

.special-badge-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-badge-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.special-badge-label {
  font-size: 0.78rem;
  color: var(--alca-purple);
  display: block;
  margin-top: 2px;
}

/* Highlight Cards - Leadership */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.highlight-card {
  padding: 26px;
  background: rgba(236, 72, 153, 0.04);
  border: 1px solid rgba(236, 72, 153, 0.1);
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.4), transparent);
}

.highlight-card:hover {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.1);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--alca-pink);
}

.highlight-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.highlight-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Research Publications - Liquid Cards */
.research-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.research-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.research-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.research-item:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateX(8px);
}

.research-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.research-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.research-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Quote Section - Optimized */
.alca-quote {
  background: rgba(20, 25, 35, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.alca-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.alca-quote::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, #F59E0B, var(--alca-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ========================
   ABOUT INTRO SECTION
   ======================== */
.about-intro {
  padding: 40px 0 60px;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #F59E0B, var(--alca-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.intro-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.intro-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.intro-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--alca-purple), var(--alca-pink));
  border-radius: 12px;
  color: #fff;
}

.value-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* ========================
   TEAM SECTION
   ======================== */
.team-section {
  padding: 60px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B, #F97316, var(--alca-pink), var(--alca-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card.founder {
  border-color: rgba(245, 158, 11, 0.2);
}

.team-card.founder::before {
  opacity: 1;
}

.team-card-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  position: relative;
}

.team-card-photo .photo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #F59E0B, #F97316, var(--alca-pink), var(--alca-purple), #F59E0B);
  animation: ring-rotate 6s linear infinite;
}

.team-card-photo .photo-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 50%;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(15, 23, 42, 0.9);
}

.team-card-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.team-card-role {
  display: inline-block;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #F59E0B, var(--alca-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-card-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--alca-gold);
  font-weight: 600;
}

.founder-badge svg {
  color: var(--alca-gold);
}

/* ========================
   FOUNDER DETAIL SECTION
   ======================== */
.founder-detail {
  padding: 60px 0 80px;
}

.founder-detail-header {
  text-align: center;
  margin-bottom: 48px;
}

.founder-detail-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ========================
   MOBILE RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .alca-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .alca-profile-card {
    position: relative;
    top: 0;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .education-grid,
  .highlight-cards {
    grid-template-columns: 1fr;
  }

  .intro-values {
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about-intro {
    padding: 30px 0 40px;
  }

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

  .intro-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .intro-values {
    flex-direction: column;
    gap: 12px;
  }

  .value-item {
    padding: 12px 20px;
  }

  .team-section {
    padding: 40px 0;
  }

  .team-title {
    font-size: 1.8rem;
  }

  .team-card {
    padding: 30px 24px;
  }

  .team-card-photo {
    width: 120px;
    height: 120px;
  }

  .team-card-name {
    font-size: 1.2rem;
  }

  .founder-detail {
    padding: 40px 0 60px;
  }

  .founder-detail-title {
    font-size: 1.8rem;
  }

  .alca-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .alca-hero {
    padding: 40px 0 60px;
  }
  
  .alca-section {
    padding: 28px 20px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .timeline-date {
    font-size: 0.8rem;
  }
  
  .alca-quote {
    padding: 32px 24px;
  }
  
  .quote-text {
    font-size: 1.1rem;
  }
  
  .alca-name {
    font-size: 1.5rem;
  }
  
  .alca-photo-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .alca-logo {
    width: 100px;
  }
}

/* ========================
   ANIMATIONS
   ======================== */
.alca-section,
.alca-profile-card,
.alca-quote {
  opacity: 0;
  transform: translateY(40px);
  animation: liquidFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.alca-profile-card { animation-delay: 0.1s; }
.alca-quote { animation-delay: 0.2s; }
.alca-section:nth-child(2) { animation-delay: 0.3s; }
.alca-section:nth-child(3) { animation-delay: 0.4s; }
.alca-section:nth-child(4) { animation-delay: 0.5s; }
.alca-section:nth-child(5) { animation-delay: 0.6s; }

@keyframes liquidFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle shimmer effect for cards */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
