.advisory-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d4f92 0%, #1567bc 100%);
  padding: 72px 20px 64px;
  overflow: hidden;
}

.advisory-hero-overlay::before {
  content: "GC";
  position: absolute;
  right: 2%;
  bottom: -18px;
  font-size: 13rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.advisory-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.advisory-page-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.title-underline {
  width: 82px;
  height: 5px;
  background: #d8ad43;
  border-radius: 20px;
  margin: 0 auto 22px;
}

.advisory-page-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.profile-tabs-section {
  background: #ffffff;
  border-bottom: 1px solid #d8e2ec;
  box-shadow: 0 8px 20px rgba(16, 43, 82, 0.05);
}

.profile-tabs-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.profile-tab {
  flex: 1 1 220px;
  min-height: 70px;
  border: none;
  background: #f3f6fa;
  border-right: 1px solid #dfe7ef;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.profile-tab:last-child {
  border-right: none;
}

.profile-tab:hover {
  background: #edf3f9;
}

.profile-tab.active {
  background: #ffffff;
  border-bottom: 3px solid #0f3f73;
}

.tab-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #175ba3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.tab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-text {
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #58708b;
  line-height: 1.2;
}

.profile-tab.active .tab-text {
  color: #123f70;
}

.advisory-main {
  background: linear-gradient(to bottom, #eef3f8 0%, #f8fafc 100%);
  padding: 48px 20px 80px;
}

.advisor-panel {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
}

.advisor-panel.active-panel {
  display: block;
}

.advisor-highlight-card {
  background: linear-gradient(135deg, #0f3666 0%, #1d63ae 100%);
  border-radius: 26px;
  padding: 36px 40px;
  display: flex;
  gap: 34px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(18, 50, 95, 0.16);
  margin-bottom: 28px;
}

.advisor-image-box {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 6px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.advisor-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-main-content {
  flex: 1;
}

.advisor-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d4ad46;
  color: #d4ad46;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.advisor-name {
  font-size: 2.95rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.advisor-role {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.advisor-intro {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.advisor-intro:last-child {
  margin-bottom: 0;
}

.advisor-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.advisor-info-card {
  background: #ffffff;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(19, 55, 100, 0.06);
}

.advisor-info-card.full-width {
  grid-column: 1 / -1;
}

.advisor-info-card h3 {
  font-size: 1.5rem;
  color: #173f70;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.advisor-info-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: calc(100% - 12px);
  border-radius: 10px;
  background: linear-gradient(to bottom, #17498a, #6fa7df);
}

.number-block {
  border: 1px solid #e4ebf2;
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin-bottom: 16px;
  background: #fbfdff;
}

.number-block:last-child {
  margin-bottom: 0;
}

.number-block h4 {
  color: #1d5c9f;
  font-size: 1.08rem;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #475564;
  font-size: 1rem;
  line-height: 1.8;
}

.icon-list li:last-child {
  margin-bottom: 0;
}

.icon-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: #2d6caf;
  font-size: 1rem;
  font-weight: 700;
}

.leadership-list li::before {
  content: "★";
}

.expertise-list li::before {
  content: "◆";
}

.qualification-list li::before {
  content: "✔";
}

.contribution-list li::before {
  content: "➜";
}

.vision-list li::before {
  content: "✦";
}

.strength-list li::before {
  content: "⬢";
}

.award-list li::before {
  content: "✪";
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .advisor-highlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advisor-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .advisor-name {
    font-size: 2.4rem;
  }

  .advisor-info-grid {
    grid-template-columns: 1fr;
  }

  .advisor-info-card.full-width {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .advisory-page-title {
    font-size: 2.5rem;
  }

  .advisory-page-subtitle {
    font-size: 1rem;
  }

  .profile-tab {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #dfe7ef;
  }

  .advisor-highlight-card {
    padding: 28px 20px;
  }

  .advisor-name {
    font-size: 2rem;
  }

  .advisor-role {
    font-size: 1rem;
  }

  .advisor-intro {
    font-size: 0.97rem;
  }

  .advisor-info-card {
    padding: 22px 18px;
  }

  .advisor-info-card h3 {
    font-size: 1.25rem;
  }

  .icon-list li {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* ================================
   Footer - Exact Reference Style
================================ */

.site-footer {
  background: linear-gradient(180deg, #00152d 0%, #000f22 100%);
  color: #ffffff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 38px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-column h4,
.footer-about h3 {
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.footer-about h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Times New Roman", serif;
}

.footer-tagline {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 14px;
  font-style: normal;
}

.footer-text,
.contact-list li,
.footer-links li a {
  color: #ffffff;
  line-height: 1.85;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-text {
  max-width: 255px;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  display: inline-block;
  position: relative;
  padding-left: 14px;
  transition: color 0.25s ease;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a.active-footer-link {
  color: #ffd84d;
}

.advisory-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d4f92 0%, #1567bc 100%);
  padding: 72px 20px 64px;
  overflow: hidden;
}

.advisory-hero-overlay::before {
  content: "GC";
  position: absolute;
  right: 2%;
  bottom: -18px;
  font-size: 13rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.advisory-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.advisory-page-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.title-underline {
  width: 82px;
  height: 5px;
  background: #d8ad43;
  border-radius: 20px;
  margin: 0 auto 22px;
}

.advisory-page-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.profile-tabs-section {
  background: #ffffff;
  border-bottom: 1px solid #d8e2ec;
  box-shadow: 0 8px 20px rgba(16, 43, 82, 0.05);
}

.profile-tabs-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.profile-tab {
  flex: 1 1 220px;
  min-height: 70px;
  border: none;
  background: #f3f6fa;
  border-right: 1px solid #dfe7ef;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.profile-tab:last-child {
  border-right: none;
}

.profile-tab:hover {
  background: #edf3f9;
}

.profile-tab.active {
  background: #ffffff;
  border-bottom: 3px solid #0f3f73;
}

.tab-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #175ba3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.tab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-text {
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #58708b;
  line-height: 1.2;
}

.profile-tab.active .tab-text {
  color: #123f70;
}

.advisory-main {
  background: linear-gradient(to bottom, #eef3f8 0%, #f8fafc 100%);
  padding: 48px 20px 80px;
}

.advisor-panel {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
}

.advisor-panel.active-panel {
  display: block;
}

.advisor-highlight-card {
  background: linear-gradient(135deg, #0f3666 0%, #1d63ae 100%);
  border-radius: 26px;
  padding: 36px 40px;
  display: flex;
  gap: 34px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(18, 50, 95, 0.16);
  margin-bottom: 28px;
}

.advisor-image-box {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 6px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.advisor-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-main-content {
  flex: 1;
}

.advisor-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d4ad46;
  color: #d4ad46;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.advisor-name {
  font-size: 2.95rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.advisor-role {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.advisor-intro {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.advisor-intro:last-child {
  margin-bottom: 0;
}

.advisor-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.advisor-info-card {
  background: #ffffff;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(19, 55, 100, 0.06);
}

.advisor-info-card.full-width {
  grid-column: 1 / -1;
}

.advisor-info-card h3 {
  font-size: 1.5rem;
  color: #173f70;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.advisor-info-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: calc(100% - 12px);
  border-radius: 10px;
  background: linear-gradient(to bottom, #17498a, #6fa7df);
}

.number-block {
  border: 1px solid #e4ebf2;
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin-bottom: 16px;
  background: #fbfdff;
}

.number-block:last-child {
  margin-bottom: 0;
}

.number-block h4 {
  color: #1d5c9f;
  font-size: 1.08rem;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #475564;
  font-size: 1rem;
  line-height: 1.8;
}

.icon-list li:last-child {
  margin-bottom: 0;
}

.icon-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: #2d6caf;
  font-size: 1rem;
  font-weight: 700;
}

.leadership-list li::before {
  content: "★";
}

.expertise-list li::before {
  content: "◆";
}

.qualification-list li::before {
  content: "✔";
}

.contribution-list li::before {
  content: "➜";
}

.vision-list li::before {
  content: "✦";
}

.strength-list li::before {
  content: "⬢";
}

.award-list li::before {
  content: "✪";
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .advisor-highlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advisor-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .advisor-name {
    font-size: 2.4rem;
  }

  .advisor-info-grid {
    grid-template-columns: 1fr;
  }

  .advisor-info-card.full-width {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .advisory-page-title {
    font-size: 2.5rem;
  }

  .advisory-page-subtitle {
    font-size: 1rem;
  }

  .profile-tab {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #dfe7ef;
  }

  .advisor-highlight-card {
    padding: 28px 20px;
  }

  .advisor-name {
    font-size: 2rem;
  }

  .advisor-role {
    font-size: 1rem;
  }

  .advisor-intro {
    font-size: 0.97rem;
  }

  .advisor-info-card {
    padding: 22px 18px;
  }

  .advisor-info-card h3 {
    font-size: 1.25rem;
  }

  .icon-list li {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* ================================
   Footer - Exact Reference Style
================================ */

.site-footer {
  background: linear-gradient(180deg, #00152d 0%, #000f22 100%);
  color: #ffffff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 38px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-column h4,
.footer-about h3 {
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.footer-about h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Times New Roman", serif;
}

.footer-tagline {
  color: #ffffff;
  font-size: 0.92rem;
  /* margin-bottom: 14px; */
  font-style: normal;
}

.footer-text,
.contact-list li,
.footer-links li a {
  color: #ffffff;
  line-height: 1.85;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-text {
  max-width: 255px;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  display: inline-block;
  position: relative;
  padding-left: 14px;
  transition: color 0.25s ease;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a.active-footer-link {
  color: #ffd84d;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(113, 156, 203, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
}

.social-btn:hover {
 background: #f2cf4a;
 color: #111111;
}

.social-btn.active-social {
  background: #f2cf4a;
  color: #111111;
  border-color: #f2cf4a;
  font-weight: 700;
}

.social-icon {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list li {
  display: block;
  margin-bottom: 12px;
}

.contact-icon {
  display: inline-block;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 24px 22px;
}

.footer-bottom p {
  margin: 0;
  color: #b7c7d8;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 18px 28px;
  }

  .footer-text {
    max-width: 100%;
  }
}