/* ===== KEKI M. MISTRY - PREMIUM EXECUTIVE DESIGN SYSTEM ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy-deep: #0a1628;
  --navy: #0f2044;
  --navy-medium: #162d5a;
  --navy-light: #1e3a6e;
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --platinum: #e8e8ec;
  --platinum-light: #f0f0f4;
  --silver: #b0b0c0;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a8892e;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --black-50: rgba(0,0,0,0.5);
  --black-30: rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-base: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
  --transition-elegant: 0.6s cubic-bezier(0.22,1,0.36,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1280px;
  --nav-height: 80px;
}

/* --- 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);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); outline: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-silver { color: var(--silver); }

/* --- Section Headers --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-badge.dark {
  background: var(--navy-deep);
  border: 1px solid var(--white-20);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 30px;
  border-radius: 2px;
}
.gold-line.left { margin-left: 0; }

/* ========== NAVIGATION ========== */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-base);
  background: transparent;
}
.main-nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--white-70);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition-base);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}
.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition-base);
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav-links a {
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  transition: var(--transition-base);
}
.mobile-nav-links a:hover { color: var(--gold); transform: translateX(10px); }

/* ========== PASSWORD GATE (index.html) ========== */
.access-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.access-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HDFC-Bank_20260319103924.avif') center/cover no-repeat;
  filter: blur(6px) brightness(0.35);
  transform: scale(1.1);
}
.access-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(15,32,68,0.75));
}
.access-panel {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: panelIn 0.8s var(--transition-elegant) forwards;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.access-logo {
  width: 70px; height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.access-panel h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.access-panel p {
  color: var(--white-50);
  font-size: 0.9rem;
  margin-bottom: 35px;
}
.access-input-wrap {
  position: relative;
  margin-bottom: 24px;
}
.access-input-wrap input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-base);
}
.access-input-wrap input::placeholder { color: var(--white-50); }
.access-input-wrap input:focus {
  border-color: var(--gold);
  background: var(--white-10);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.access-toggle-pw {
  position: absolute;
  right: 16px; top: 50%; transform: translateY(-50%);
  background: none;
  color: var(--white-50);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-base);
}
.access-toggle-pw:hover { color: var(--gold); }
.access-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.access-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}
.access-btn:hover::before { left: 100%; }
.access-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.access-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition-base);
}
.access-error.show { opacity: 1; transform: translateY(0); }
.access-footer {
  margin-top: 40px;
  color: var(--white-20);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(15,32,68,0.7) 50%, rgba(10,22,40,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--white-70);
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 600px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
.hero-stat {
  text-align: left;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-number span { font-size: 1.5rem; }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 500;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-50);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== PAGE BANNER (Inner Pages) ========== */
.page-banner {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(15,32,68,0.8));
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-height);
}
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-banner-content p {
  color: var(--white-50);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--white-50);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ========== EXECUTIVE SUMMARY ========== */
.exec-summary {
  background: var(--white);
}
.exec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exec-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.exec-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  object-position: top center;
}
.exec-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent);
}
.exec-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy-deep);
  margin-bottom: 20px;
  font-weight: 700;
}
.exec-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ========== HIGHLIGHTS / CARDS ========== */
.highlights-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.highlights-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.highlight-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition-base);
}
.highlight-card:hover {
  background: var(--white-10);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.highlight-card p {
  color: var(--white-50);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== QUOTE SECTION ========== */
.quote-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 60px;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: var(--white-05);
  line-height: 1;
}
.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.quote-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 400;
}
.quote-author {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========== ROLE SPOTLIGHT ========== */
.role-spotlight {
  background: var(--platinum-light);
}
.role-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-base);
}
.role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.role-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.role-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.role-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== TIMELINE ========== */
.timeline-section { background: var(--white); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-deep));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--gold);
  z-index: 2;
  transition: var(--transition-base);
}
.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 6px var(--gold), 0 0 20px rgba(201,168,76,0.4);
}
.timeline-content {
  width: 45%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
.timeline-item:hover .timeline-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.timeline-year {
  display: inline-block;
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.timeline-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== BIO SECTIONS ========== */
.bio-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.bio-block.reverse { direction: rtl; }
.bio-block.reverse > * { direction: ltr; }
.bio-block-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.bio-block-image img {
  width: 100%; height: 400px;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-slow);
}
.bio-block-image:hover img { transform: scale(1.03); }
.bio-block-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.bio-block-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ========== HDFC LEGACY ========== */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.legacy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 45px 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.legacy-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}
.legacy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.legacy-card:hover::after { transform: scaleX(1); }
.legacy-card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--platinum);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.legacy-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.legacy-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Governance / Excellence Cards */
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.excellence-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-base);
}
.excellence-card:hover {
  background: var(--white-10);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.excellence-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
}
.excellence-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.excellence-card p {
  color: var(--white-50);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ========== PHILOSOPHY ========== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 45px 35px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition-base);
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.philosophy-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.philosophy-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}
.philosophy-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--platinum);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Quote Panel (Full Width) */
.immersive-quote {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.immersive-quote::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
}
.immersive-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ========== GALLERY ========== */
.gallery-section { background: var(--platinum-light); }
.masonry-gallery {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 1.4rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-10);
  border-radius: 50%;
  transition: var(--transition-base);
}
.lightbox-close:hover { background: var(--white-20); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-10);
  border-radius: 50%;
  transition: var(--transition-base);
}
.lightbox-nav:hover { background: var(--white-20); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ========== CONTACT ========== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--platinum-light);
  border-radius: var(--radius-md);
  padding: 50px 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition-base);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  margin-top: 10px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-info { padding-top: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--platinum-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}
.contact-info-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.contact-info-item p {
  color: #666;
  font-size: 0.9rem;
}
.contact-info-item a {
  color: var(--gold-dark);
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--gold); }
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.contact-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  color: var(--navy-deep);
  font-size: 1rem;
  transition: var(--transition-base);
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  padding: 50px 0 30px;
  border-top: 1px solid var(--white-10);
}
.footer-content {
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-tagline {
  color: var(--white-50);
  font-size: 0.8rem;
  margin-bottom: 24px;
}
.footer-contact {
  color: var(--white-70);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.footer-contact a {
  color: var(--gold);
  font-weight: 500;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-20);
  border-radius: 50%;
  color: var(--white-70);
  font-size: 0.9rem;
  transition: var(--transition-base);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--white-10);
  margin-bottom: 24px;
}
.footer-credit {
  color: var(--white-50);
  font-size: 0.78rem;
}
.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}
.footer-credit a:hover { color: var(--gold-light); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .excellence-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3.2rem; }
  .hero-stats { gap: 30px; }
  .masonry-gallery { columns: 3; }
  .exec-grid,
  .bio-block,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 2.2rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-number { font-size: 2.5rem; }
  .page-banner { height: 45vh; min-height: 350px; }
  .page-banner-content h1 { font-size: 2.4rem; }
  .highlights-grid,
  .role-cards,
  .legacy-grid,
  .philosophy-grid { grid-template-columns: 1fr; }
  .excellence-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { columns: 2; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; padding-left: 50px; }
  .timeline-dot { left: 20px !important; }
  .timeline-content { width: 100% !important; }
  .access-panel { padding: 40px 30px; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { padding: 0 20px; }
  .quote-content blockquote { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .masonry-gallery { columns: 1; }
  .excellence-grid { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; justify-content: center; }
}
