:root {
  --navy: #0a1f44;
  --gold: #c5a572;
  --dark-gold: #a68759;
  --light-gray: #f8f9fa;
  --mid-gray: #e9ecef;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.brand-logo-image img {
  height: 70px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--gold);
}

nav ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Page Container */
.page-container {
  padding-top: 110px;
  min-height: 100vh;
  background: linear-gradient(180deg, #fafbfc 0%, var(--white) 100%);
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.7rem;
}

.section-label {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.page-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 400;
}

/* Team Stats */
.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
}

.stat-card {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--mid-gray);
  position: relative;
  transition: all 0.4s ease;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  background: var(--light-gray);
}

.stat-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Staff Container */
.staff-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem 8rem;
}

.department-section {
  margin-bottom: 8rem;
}

.department-header {
  margin-bottom: 5rem;
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--mid-gray);
}

.department-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.department-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
}

/* Staff Grid - Improved Layout */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.staff-grid.leadership {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.staff-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-bottom: 3px solid transparent;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
  border-bottom-color: var(--gold);
}

.staff-image-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5f 100%);
}

.staff-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.staff-image i {
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.9;
}

.staff-card:hover .staff-image {
  transform: scale(1.08);
}

.staff-card:hover .staff-image i {
  color: var(--white);
}

.staff-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(10, 31, 68, 0.95) 0%,
    rgba(10, 31, 68, 0.7) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.staff-card:hover .staff-overlay {
  opacity: 1;
}

.staff-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.1);
}

.staff-info {
  padding: 2.5rem 2rem;
  background: var(--white);
}

.staff-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}

.staff-position {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.staff-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.staff-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #152d56 100%);
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(197,165,114,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 3.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  border-radius: 50px;
}

.cta-button:hover {
  background: transparent;
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .staff-container {
    padding: 0 2rem 6rem;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .staff-grid.leadership {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--mid-gray);
  }

  .stat-card:nth-child(odd) {
    border-right: 1px solid var(--mid-gray);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 1.2rem 2rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .page-header {
    padding: 3rem 1.5rem 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.05rem;
  }

  .staff-container {
    padding: 0 1.5rem 4rem;
  }

  .staff-grid,
  .staff-grid.leadership {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 4rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--mid-gray);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .department-header {
    margin-bottom: 3rem;
  }

  .department-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .staff-image-container {
    height: 320px;
  }

  .staff-image i {
    font-size: 4.5rem;
  }
}
