/* =================================================================================== */
/* 1. BOOTSTRAP OVERRIDES & UTILITIES */
/* =================================================================================== */

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

/* Text Color Utilities */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-black-tebp {
  color: var(--black-tebp) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-light-grey {
  color: var(--lightgrey) !important;
}

.text-grey {
  color: var(--grey) !important;
}

.text-dark-grey {
  color: var(--darkgrey) !important;
}

/* Spacing Utilities */
.martop-24 {
  margin-top: 24px !important;
}

.martop-32 {
  margin-top: 32px !important;
}

.circle--btn {
  background-color: var(--black-tebp);
}

.circle--btn:hover {
  background-color: var(--black-hover);
}

.pagination-n-btn .swiper-button-next,
.pagination-n-btn .swiper-button-prev {
  background-color: var(--black-tebp);
}

.pagination-n-btn:hover .swiper-button-next:hover,
.pagination-n-btn:hover .swiper-button-prev:hover {
  background-color: var(--black-hover);
}

.gap-detail {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

@media (max-width: 992px) {
  .section--space {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.marbot-32 {
  margin-bottom: 32px;
}



/* =================================================================================== */
/* 2. HEADER & NAVIGATION */
/* =================================================================================== */

.navbar-custom {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-header {
  width: 50px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-toggle:hover {
  color: var(--primary) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle.active,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-toggle.dropdown-open {
  color: var(--primary) !important;
}

.navbar-nav .nav-item {
  padding: 0 16px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Dropdown Menus */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  background-color: #ffffff;
  font-size: 16px;
}

.dropdown-menu .dropdown-item {
  padding: 12px 32px;
  color: #333;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -12px;
  min-width: 200px;
}

.dropdown-submenu .dropdown-item.dropdown-toggle::after {
  content: "▶";
  border: none;
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-item.active {
  color: var(--primary);
  text-decoration: none;
  background-color: var(--white) !important;
}

/* Desktop Navigation */
@media (max-width: 1200px) {
  .navbar-nav .nav-item {
    padding-left: 2px;
    padding-right: 2px;
  }
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.25s ease-in-out;
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }

  .menu-others .dropdown-submenu>.dropdown-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -1px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .menu-others .dropdown-submenu>.dropdown-item.dropdown-toggle::after {
    content: "\25B6";
    right: 18px;
    left: auto;
    transform: translateY(-50%);
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    display: none !important;
  }

  .dropdown-menu {
    box-shadow: none !important;
    min-width: 220px;
    background-color: none !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1050;
    padding: 1.5rem;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
  }

  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
  }

  .navbar-collapse .nav-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .navbar-collapse .nav-link,
  .navbar-collapse .dropdown-toggle {
    color: var(--p-text);
    font-size: 16px;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .dropdown-toggle:hover {
    color: var(--primary);
  }

  .navbar-collapse .btn-close-menu {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
  }

  .mobile-dropdown::after {
    display: none !important;
  }
}

/* Mobile Submenu */
.mobile-submenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1060;
  display: none;
  padding: 1.5rem;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
}

.mobile-submenu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-submenu .btn-back {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.mobile-submenu ul {
  list-style: none;
  padding: 0;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.mobile-submenu li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin: 0;
  background: none !important;
  border-radius: 0 !important;
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu li a {
  color: var(--p-text);
  text-decoration: none;
  display: block;
  font-size: 16px;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 12px 8px;
}

.mobile-submenu li a:hover {
  color: var(--primary);
  background: #f8f9fa !important;
}

@media (max-width: 991px) {
  .mobile-submenu {
    background: #fff;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 1.5rem 0.5rem !important;
  }
}

/* Mobile Dropdown Icon */
.mobile-dropdown {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-icon-mobile {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.mobile-dropdown[aria-expanded="true"] .dropdown-icon-mobile {
  transform: rotate(90deg);
}

/* Navigation Animations */
@keyframes slideDownMenu {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpMenu {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideInSubmenu {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutSubmenu {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.navbar-collapse.animated-slide-down {
  animation: slideDownMenu 0.3s forwards;
}

.navbar-collapse.animated-slide-up {
  animation: slideUpMenu 0.3s forwards;
}

.mobile-submenu.animated-slide-in {
  animation: slideInSubmenu 0.3s forwards;
}

.mobile-submenu.animated-slide-out {
  animation: slideOutSubmenu 0.3s forwards;
}

/* =================================================================================== */
/* 3. HERO SECTIONS */
/* =================================================================================== */

.hero-section {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.hero-section video {
  object-fit: cover;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000033;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 125px 80px 115px 80px;
  text-align: center;
  top: -25px;
  box-sizing: border-box;
}

.hero-finan-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.hero-finan-section video {
  object-fit: cover;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-finan-overlay {
  position: relative;
  z-index: 1;
  height: 425px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 125px 80px 15px 80px;
  text-align: center;
  top: -25px;
  box-sizing: border-box;
}

/* =================================================================================== */
/* 4. STOCK SECTION */
/* =================================================================================== */

.stock-content {
  position: relative;
  z-index: 2;
}

.stock__health {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  overflow: hidden;
}

.stock__health .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  border-radius: 24px;
}

.stock__health .overlay {
  position: absolute;
  inset: 0;
  background: #00000033;
  z-index: 0;
}

.stock__detail {
  padding: 48px 64px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Stock Responsive */
@media (max-width: 1399.98px) {
  .stock__detail {
    padding: 32px 48px !important;
  }
}

@media (max-width: 1199.98px) {
  .stock__health {
    /* height: 252px; */
    padding: 32px;
  }

  .stock__detail {
    padding: 32px 40px !important;
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .stock_margin_mobile {
    margin-bottom: 0 !important;
  }

  .stock__detail-tablet {
    padding-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .stock__detail-tablet {
    padding-top: 32px;
  }

  .stock_margin_mobile {
    padding-bottom: 24px !important;
  }

  .stock__health {
    height: 252px;
  }
}

/* =================================================================================== */
/* 5. COMPANY SECTION */
/* =================================================================================== */

.company-image {
  border-radius: 24px;
}

.company-info.column-12 .company__content-grid {
  gap: 24px;
  margin-top: 24px;
}

.company-info .company__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-info .row {
  display: flex;
  align-items: stretch;
}

.company-info .company__image {
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
}

.company-info .company__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 1400px) {
  .company-info .company__image img {
    height: 480px;
  }
}

@media (max-width: 1200px) {
  .company-info .company__image img {
    height: 644px;
  }
}

/* Company Section Responsive */
@media (max-width: 991.98px) {
  .company-info .row {
    align-items: start;
  }

  .company-info .company__image {
    height: auto;
    margin-bottom: 24px;
  }

  .company-info .company__image img {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .company-info .company__image {
    margin-bottom: 20px;
  }
}

/* =================================================================================== */
/* 6. FINANCIAL SECTION */
/* =================================================================================== */

.financial-h-data,
.financial-h-chart,
.income-chart,
.security-detail {
  background-color: var(--white) !important;
  border-radius: 24px !important;
  padding: 32px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.financial-card {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.section--space.custom-financial {
  margin-top: 0;
}

/* Background Sections */
.bg-financial {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("../images/bg/bg-financial.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.bg-financial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(15, 117, 188, 0.75);
  z-index: -1;
}

.bg-financial>.container {
  position: relative;
  z-index: 1;
}

.bg-news-contact {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("../images/bg/bg-news-contact.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.bg-news-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0, 0.4);
  z-index: -1;
}

.bg-news-contact>.container {
  position: relative;
  z-index: 1;
}

.bg-news-contact.end-space {
  margin-bottom: 0;
  padding-bottom: 0;
}

.section--space.end-space {
  margin-top: 80px;
  margin-bottom: 0;
}

.section--space.financial-space {
  margin-bottom: 0;
}

.contact.column-12 .contact-card.custom-contact {
  border: none;
}

/* Financial Tabs */
.financial-tabs {
  background-color: #F2F2F2;
  border-radius: 32px;
  padding: 8px;
  display: inline-flex;
  gap: 12px;
}

.financial-tab {
  background: transparent;
  border: none;
  padding: 8px 16px;
  border-radius: 24px;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.financial-tab.active {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

.financial-tab:hover:not(.active) {
  background-color: rgba(15, 117, 188, 0.1);
  color: var(--primary);
}

/* Financial Chart */
#financial_H {
  transition: opacity 0.3s ease;
}

.financial-h-chart p {
  transition: all 0.3s ease;
}

/* Financial Layout Order - Chart first on mobile */
@media (max-width: 991.98px) {
  .financial-h .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .financial-h .stock-graph-card {
    order: 1;
    /* Chart appears first */
  }

  .financial-h .stock-detail-card {
    order: 2;
    /* Security details appear second */
  }

  .bg-financial {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .bg-news-contact {
    padding-top: 64px;
    padding-bottom: 64px;
    background-position: 80%;
  }

  .col-news {
    margin-bottom: 64px;
  }

  .section--space.end-space {
    margin-top: 64px;
  }

  .col-email {
    margin-bottom: 24px;
  }

  .financial-h {
    margin-bottom: 64px;
  }

  .document-for-investor {
    margin-top: 64px;
  }
}



/* Financial Tabs Responsive */
@media (max-width: 767.98px) {
  .financial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-items: start !important;
  }

  .financial-tabs {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
  }


  .financial-tab {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    text-align: center;
  }

  .document-for-investor {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .financial-tab {
    flex: 1;
    min-width: calc(50% - 4px);
    padding: 16px 16px;
    font-size: 13px;
    border-radius: 24px;
  }

}

/* =================================================================================== */
/* 7. COMPANY HISTORY SECTION */
/* =================================================================================== */

.company-history.column-12 .comHistorySwiper {
  width: 100%;
  height: 450px;
  cursor: grab;
}

.company-history.column-12 .swiper-slide {
  max-width: 400px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  border-radius: 24px;
  position: relative;
}

/* Hide list markers for nested lists in history section */
.history-list li ul {
  list-style: none;
}

.history-list li ul li {
  list-style: none;
}

.history-list ul {
  padding-left: 0;
}

/* =================================================================================== */
/* 8. FINANCIAL HIGHLIGHT PAGE */
/* =================================================================================== */

.financial-h.column-12-1 {
  width: 100%;
  height: 100%;
  background-color: none;
}

.section--financial {
  margin-top: 80px;
  margin-bottom: 80px;
}

.financial-chart {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.financial-line {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* Financial Highlight Responsive */
@media (max-width: 991.98px) {
  .section--financial {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .financial-custom {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .financial-h.column-12-1 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .section--financial {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* =================================================================================== */
/* 9. TABLES */
/* =================================================================================== */

.table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
}

.table thead {
  background-color: var(--primary);
  color: white;
}

.table thead th:first-child {
  border-top-left-radius: 24px;
}

.table thead th:last-child {
  border-top-right-radius: 24px;
}

.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 24px;
}

.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}

.table th,
.table td {
  padding: 24px;
  border: none;
  border-top: 1px solid #efefef;
  border-right: 1px solid #efefef;
  empty-cells: show;
}

.table th:first-child,
.table td:first-child {
  border-left: 1px solid #efefef;
}

.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: 1px solid #efefef;
}

.table thead th {
  border-top: none;
  font-size: 20px;
  font-weight: 600;
}

.table-financial th,
.table-financial td {
  padding: 24px !important;
}

/* Table Mobile Overlay */
@media (max-width: 767.98px) {
  .table-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .table-overlay.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .scroll-hint.position-relative {
    position: relative;
  }

  .scroll-hint-icon {
    z-index: 10;
  }

  .scroll-hint-icon:before {
    animation: scroll-hint-appear 2.2s linear infinite !important;
    -webkit-animation: scroll-hint-appear 2.2s linear infinite !important;
  }
}

/* =================================================================================== */
/* 10. FOOTER */
/* =================================================================================== */

.footer-custom {
  background-color: var(--primary);
}

.container-footer {
  padding: 2em 0em 0em 0em;
}

.contact-widget-wrap {
  padding: 1em 1em 1em 1em;
}

.footer-logo {
  width: 90px;
  height: auto;
}

.text-copyright {
  color: #c4c4c4;
  font-size: 14px;
}

.elementor-widget:not(:last-child) {
  margin-bottom: 20px;
}

.footer-custom iframe {
  border-radius: 24px;
}

/* Footer Responsive */
@media (max-width: 1399.98px) {
  .footer-custom iframe {
    width: 100% !important;
  }
}

@media (max-width: 991.98px) {
  .logo-widget {
    margin-bottom: 32px !important;
  }

  .contact-widget-wrap {
    padding: 0em 1em 1em 1em;
  }

  .footer-logo {
    width: 120px;
    display: block;
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 768.98px) {
  .footer-logo {
    width: 100px;
    display: block;
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 767.98px) {
  .footer-logo {
    width: 70px;
  }
}

@media (max-width: 576.98px) {
  .footer-logo {
    width: 80px;
    display: block;
    margin: 0 auto 1rem auto;
  }
}



/* =================================================================================== */
/* 11. READ DETAIL PAGE */
/* =================================================================================== */

#header-read-detail {
  background: url("../images/bg/bg-read-detail.webp");
  height: 104px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header-read-detail .logo img {
  width: 60px;
  text-align: center;
  margin: auto;
  justify-content: space-between;
}

.section-read-detail {
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.text-space-bt {
  padding-bottom: 24px;
}

.text-space-pt {
  padding-top: 32px;
}

.text-head {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 40px;
}

.news-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.footer-detail-section {
  text-align: center;
  margin-top: 32px;
  padding: 24px 0;
  color: #333;
}

.footer-detail-text {
  font-size: 14px !important;
}

.contact-detail-text {
  font-size: 12px !important;
}

/* Read Detail Responsive */
@media screen and (max-width: 1200px) {
  #header-read-detail {
    height: 100px !important;
    background-size: cover;
    background-position: center;
  }
}

@media screen and (max-width: 991.98px) {
  #header-read-detail {
    height: 100px !important;
    background-size: cover;
    background-position: center;
  }

  .news-image {
    border-radius: 16px;
  }
}

@media screen and (max-width: 767.98px) {
  #header-read-detail {
    height: 100px !important;
    background-size: cover;
    background-position: center;
  }

  .news-image {
    border-radius: 8px;
  }

  .text-head {
    padding-bottom: 32px;
  }

  .section-read-detail {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 575.98px) {
  .section-read-detail {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .text-head {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 479px) {
  #header-read-detail {
    height: 100px !important;
    background-size: cover;
    background-position: center;
  }
}

/* =================================================================================== */
/* 12. ERROR PAGE */
/* =================================================================================== */

.section--error {
  margin-top: 80px;
  margin-bottom: 80px;
}

.img-error {
  width: 30%;
}

.box-error-btn {
  margin-top: 24px;
}

.bdt-ep-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease-out;
  z-index: 0;
  color: #fff;
  background-color: #0f75bc;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 14px;
}

.bdt-ep-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #3d91e0;
  z-index: -1;
  transition: height 0.3s ease-out;
}

.bdt-ep-button:hover:before {
  height: 100%;
}

.bdt-ep-button:hover {
  color: #fff;
}

.bdt-ep-button-content-wrapper {
  position: relative;
  z-index: 1;
}

/* Error Page Responsive */
@media screen and (max-width: 1199.98px) {
  .section--error {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 991.98px) {
  .section--error {
    margin-top: 120px;
    margin-bottom: 120px;
  }

  .img-error {
    width: 40%;
  }
}

@media screen and (max-width: 767.98px) {
  .section--error {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .img-error {
    width: 60%;
  }
}

/* =================================================================================== */
/* 13. COOKIE MODAL */
/* =================================================================================== */

#cookieModal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  z-index: 9999;
  display: none;
  border-radius: 20px;
  transition: none;
  background: #fff;
}

.cookie-logo {
  max-width: 60px;
  height: auto;
}

#cookieModal p {
  font-size: 14px;
}

.accept {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease-out;
  z-index: 0;
  color: #fff;
  background-color: #0f75bc;
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 14px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.accept:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #3d91e0;
  z-index: -1;
  transition: height 0.3s ease-out;
}

.accept:hover:before {
  height: 100%;
}

.accept:hover {
  color: #fff;
}

.d-flex.gap-12 {
  gap: 10px !important;
  flex-direction: row;
}

/* Cookie Animations */
@keyframes cookieSlideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cookieSlideDownFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(40px);
  }
}

#cookieModal.cookie-animate-in {
  animation: cookieSlideUpFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookieModal.cookie-animate-out {
  animation: cookieSlideDownFadeOut 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cookie Responsive */
@media (min-width: 1200px) {
  .cookie-logo {
    max-width: 70px;
  }

  #cookieModal p {
    font-size: 15px;
  }

  .accept {
    font-size: 15px;
    padding: 10px 28px;
  }

  #cookieModal {
    max-width: 340px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .cookie-logo {
    max-width: 60px;
  }

  #cookieModal p {
    font-size: 14px;
  }

  .accept {
    font-size: 14px;
    padding: 8px 20px;
  }

  #cookieModal {
    max-width: 320px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cookie-logo {
    max-width: 64px;
  }

  #cookieModal p {
    font-size: 15px;
  }

  .accept {
    font-size: 15px;
    padding: 10px 24px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .cookie-logo {
    max-width: 56px;
  }

  #cookieModal p {
    font-size: 14px;
  }

  .accept {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 991.98px) {
  #cookieModal {
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    bottom: 0px;
    top: auto;
    max-width: 95vw;
    width: 95vw;
    border-radius: 16px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 575.98px) {
  .cookie-logo {
    max-width: 50px;
  }

  #cookieModal p {
    font-size: 13px;
  }

  .accept {
    font-size: 15px;
    padding: 14px 0;
    width: 100%;
    border-radius: 12px;
  }

  .d-flex.gap-12 {
    gap: 8px !important;
    flex-direction: column;
  }

  #cookieModal {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
  }
}

/* =================================================================================== */
/* 15. ACTIVITIES CALENDAR */
/* =================================================================================== */

.activities__image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.activities__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

/* =================================================================================== */
/* 16. ESG ACTIVITIES PAGE & ANTI-CORRUPTION PAGE */
/* =================================================================================== */

.esg-content-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.csr-policy-section .policy-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.csr-policy-section {
  margin-bottom: 32px;
}

.card-header-custom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--lightgrey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
}

.bcg-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.bcg-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--lightgrey);
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* .bcg-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

.bcg-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcg-icon .material-symbols-rounded {
  font-size: 20px;
  color: var(--white);
}

.bcg-content {
  flex: 1;
}

.esg-goals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.goal-item .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Policy Accordion */
.policy-accordion {
  margin-top: 24px;
}

.policy-accordion .accordion-item {
  border: none;
  border-radius: 16px !important;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.policy-accordion .accordion-header {
  margin-bottom: 0;
}

.policy-accordion .accordion-button {
  background-color: var(--white);
  border: none;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px !important;
  box-shadow: none;
  position: relative;
}

.policy-accordion .accordion-button:not(.collapsed) {
  background-color: var(--lightgrey);
  color: var(--primary);
  box-shadow: none;
}

.policy-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.policy-accordion .accordion-button::after {
  display: none;
}

.policy-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.policy-title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.accordion-icon {
  font-size: 24px;
  color: var(--grey);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.policy-accordion .accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.policy-accordion .accordion-collapse {
  border-top: 1px solid #eee;
}

.policy-accordion .accordion-body {
  padding: 24px;
  background-color: var(--white);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-text);
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

/* Nested Accordion Styles */
.policy-accordion .policy-accordion {
  margin-top: 16px;
  margin-bottom: 0;
}

.policy-accordion .policy-accordion .accordion-item {
  margin-bottom: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.policy-accordion .policy-accordion .accordion-button {
  padding: 16px 20px;
  font-size: 16px;
  background-color: #f8f9fa;
}

.policy-accordion .policy-accordion .accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: var(--primary);
}

.policy-accordion .policy-accordion .policy-number {
  width: 35px;
  height: 35px;
  font-size: 14px;
}

.policy-accordion .policy-accordion .policy-title {
  font-size: 16px;
  font-weight: 500;
}

.policy-accordion .policy-accordion .accordion-body {
  padding: 20px;
  background-color: #fafafa;
}

/* Anti-Corruption Specific Styles */
.anticorruption-highlight {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #f39c12;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
}

.anticorruption-highlight .material-symbols-rounded {
  color: #f39c12;
  font-size: 24px;
  margin-right: 12px;
}

.risk-level-high {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-left: 4px solid #e74c3c;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.risk-level-medium {
  background: rgba(122, 173, 210, 0.1);
  ;
  border-left: 4px solid var(--primary);
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.risk-level-low {
  background: rgba(15, 117, 188, 0.1);
  ;
  border-left: 4px solid var(--primary);
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

/* Whistleblower & Contact Channels Styles */
.contact-channels {
  margin-top: 20px;
}

.contact-channel-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact-channel-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon .material-symbols-rounded {
  color: white;
  font-size: 20px;
}

.address-box {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

.contact-details {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

.contact-info-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
}



/* Contact Options Styling */
.contact-option {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

.mail-option {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

/* Responsive Design for New Sections */
@media (max-width: 991.98px) {
  .contact-channel-item {
    padding: 16px;
  }

  .contact-channel-item .d-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .channel-icon {
    align-self: center;
  }

  .contact-text-group {
    align-self: center;
  }

  .csr-policy-section {
    margin-bottom: 0px;
  }

  .policy-card {
    margin-bottom: 0px;
  }

  .contact-detail-group {
    width: 100%;
  }

  .esg-documents-section {
    margin-top: 32px;
  }


}

@media (max-width: 767.98px) {
  .contact-channel-item {
    padding: 14px;
  }

  .address-box,
  .contact-details,
  .contact-info-box {
    padding: 12px;
  }



  .contact-option,
  .mail-option {
    padding: 12px;
  }

  .esg-text-group {
    align-self: center;
  }

  .esg-text-group .section-title {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .contact-channel-item {
    padding: 12px;
  }

  .address-box,
  .contact-details,
  .contact-info-box {
    padding: 10px;
  }



  .contact-option,
  .mail-option {
    padding: 10px;
  }
}

/* Document Callout Section */
.documents-callout {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px;
  position: relative;
}

.callout-header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.callout-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-icon .material-symbols-rounded {
  font-size: 20px;
  color: var(--white);
}

.callout-image {
  padding: 0;
  margin-bottom: 0;
}

.callout-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.callout-content {
  background-color: var(--white);
  padding: 24px;
  margin: 0;
  border-radius: 0;
}

.document-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item .material-symbols-rounded {
  font-size: 16px;
  color: var(--grey);
}

.document-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #f7f8fa;
  color: var(--black-tebp);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e7e7e7 !important;
  cursor: pointer;
}

.download-btn:hover {
  background-color: var(--black-tebp);
  color: var(--white);
  box-shadow: none;
}

.download-btn.downloading {
  background-color: var(--black-tebp);
  cursor: not-allowed;
  transform: none;
  color: var(--white);
}

.download-btn.success {
  background-color: #28a745;
  color: var(--white);
}

.download-btn.error {
  background-color: var(--danger);
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background-color: #f7f8fa;
  color: var(--black-tebp);
  border: 1px solid #e7e7e7 !important;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.view-btn:hover {
  background-color: var(--black-tebp);
  color: var(--white);
  box-shadow: none;
}

.btn-icon {
  font-size: 24px;
}

/* Additional Documents */
.additional-docs {
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: var(--lightgrey);
  border-radius: 16px;
}

.doc-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-icon .material-symbols-rounded {
  font-size: 18px;
  color: var(--white);
}

.doc-content {
  flex: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-link:hover {
  color: var(--primary-hover);
}

.download-btn-small {
  padding: 0;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.download-btn-small:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.download-btn-small.downloading {
  color: var(--grey);
  cursor: not-allowed;
}

.download-btn-small.success {
  color: #28a745;
}

.download-btn-small.error {
  color: var(--danger);
}

/* Responsive Design for ESG Page */
@media (max-width: 991.98px) {

  .esg-content-card,
  .policy-card {
    padding: 24px;
    margin-bottom: 32px;
  }

  .policy-card-custom {
    margin-bottom: 0px;
  }

  .policy-accordion .accordion-item {
    margin-bottom: 12px;
  }

  .policy-accordion .accordion-button {
    padding: 16px 20px;
  }

  .policy-accordion .accordion-body {
    padding: 20px;
  }

  /* .documents-callout {
    margin-top: 32px;
  } */

  .callout-content {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {

  .esg-content-card,
  .policy-card,
  .additional-docs {
    padding: 24px;
  }

  .card-header-custom {
    gap: 12px;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .icon-wrapper .material-symbols-rounded {
    font-size: 20px;
  }

  .policy-accordion .accordion-button {
    padding: 14px 16px;
    gap: 12px;
  }

  .policy-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .policy-title {
    font-size: 16px;
  }

  .accordion-icon {
    font-size: 20px;
  }

  .policy-accordion .accordion-body {
    padding: 16px;
  }

  .callout-header {
    padding: 20px 20px 12px;
  }

  .callout-image {
    padding: 0;
  }

  .callout-content {
    padding: 20px;
  }

  .document-actions {
    gap: 10px;
  }

  .download-btn,
  .view-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {

  .esg-content-card,
  .policy-card,
  .additional-docs {
    padding: 16px;
  }

  .policy-accordion .accordion-item {
    margin-bottom: 8px;
  }

  .policy-accordion .accordion-button {
    padding: 12px 14px;
    gap: 10px;
  }

  .policy-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .policy-title {
    font-size: 14px;
  }

  .accordion-icon {
    font-size: 18px;
  }

  .policy-accordion .accordion-body {
    padding: 14px;
  }

  .policy-list {
    gap: 12px;
  }

  .policy-list li {
    font-size: 14px;
    padding-left: 20px;
  }

  .callout-header {
    padding: 16px 16px 12px;
  }

  .callout-image {
    padding: 0;
  }

  .callout-content {
    padding: 16px;
  }

  .callout-image img {
    height: 160px;
  }

  .doc-item {
    padding: 12px;
    gap: 12px;
  }

  .doc-icon {
    width: 32px;
    height: 32px;
  }

  .doc-icon .material-symbols-rounded {
    font-size: 16px;
  }
}

.activities-calendar-card:hover .activities__image img {
  transform: scale(1.15);
}

.activities-calendar.column-6 .activities-calendar-card {
  width: 100%;
  height: 564px;
}

/* =================================================================================== */
/* 15. CORPORATE INFO SECTION */
/* =================================================================================== */

.corporate-info-section {
  width: 100%;
  margin: 0;
}

.corporate-info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
}

.corporate-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 0;
}

.corporate-table thead th {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 24px;
  font-size: 20px;
  font-weight: 600;
}

.company-header-cell {
  text-align: left !important;
}

.company-logo-table {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.company-name-en {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

.corporate-table tbody tr:nth-child(odd) {
  background-color: white;
}

.corporate-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.corporate-table td {
  padding: 16px 24px;
  border: none;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.corporate-table tbody tr:last-child td {
  border-bottom: none;
}

.label-cell {
  font-weight: 600;
  font-size: 16px;
  color: var(--black-tebp);
  width: 220px;
  min-width: 220px;
}

.value-cell {
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-text);
  font-weight: 400;
}

/* Corporate Info Responsive */
@media (max-width: 1199.98px) {
  .corporate-info-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .corporate-table thead th {
    padding: 20px;
    font-size: 18px;
  }

  .corporate-table td {
    padding: 14px 20px;
  }

  .label-cell {
    width: 200px;
    min-width: 200px;
    font-size: 15px;
  }

  .value-cell {
    font-size: 15px;
  }

  .company-logo-table {
    max-height: 45px;
  }
}

@media (max-width: 991.98px) {
  .corporate-info-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: left;
  }

  .corporate-table thead th {
    padding: 18px;
    font-size: 16px;
    text-align: left !important;
  }

  .corporate-table td {
    padding: 12px 18px;
  }

  .label-cell {
    width: 180px;
    min-width: 180px;
    font-size: 14px;
  }

  .value-cell {
    font-size: 14px;
  }

  .company-logo-table {
    max-height: 40px;
  }
}

@media (max-width: 767.98px) {
  .corporate-table {
    border-radius: 16px;
  }

  .corporate-info-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .corporate-table thead th {
    padding: 16px;
    font-size: 14px;
  }

  .corporate-table td {
    padding: 10px 16px;
  }

  .label-cell {
    width: 140px;
    min-width: 140px;
    font-size: 13px;
  }

  .value-cell {
    font-size: 13px;
    line-height: 1.5;
  }

  .company-logo-table {
    max-height: 35px;
  }

  .d-flex.align-items-center {
    flex-direction: row;
    text-align: left;
  }

  .me-3 {
    margin-right: 12px !important;
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .corporate-table {
    border-radius: 12px;
  }

  .corporate-info-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .corporate-table thead th {
    padding: 14px;
    font-size: 13px;
  }

  .corporate-table td {
    padding: 8px 14px;
  }

  .label-cell {
    width: 120px;
    min-width: 120px;
    font-size: 12px;
  }

  .value-cell {
    font-size: 12px;
  }

  .company-logo-table {
    max-height: 30px;
  }
}

/* =================================================================================== */
/* 16. INDUSTRY SECTION */
/* =================================================================================== */

.industry-content {
  background-color: #FBFBFB;
  padding: 0px 0 !important;
  overflow: hidden;
  position: relative;
}

.industry-row {
  min-height: 100vh;
  align-items: center;
}

/* Left Column - Static Content */
.industry-left-col {
  position: relative;
  z-index: 2;
}

.industry-left-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px;
}

.industry-header {
  max-width: 400px;
}

.industry-header h4 {
  margin-bottom: 24px;
}

.industry-header p {
  line-height: 1.6;
}

/* Right Column - Scrollable Cards */
.industry-right-col {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.industry-cards-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.industry-cards-container .industry-card {
  position: relative;
  /* Default สำหรับ mobile */
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  opacity: 1 !important;
  /* Force แสดง cards */
  visibility: visible !important;
  /* Force แสดง cards */
}

.industry-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0px 20px;
  height: auto;
  min-height: 100%;
}

/* Industry Cards */
.industry-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 32px;
  gap: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  will-change: transform, opacity, scale;
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-image,
.industry-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.industry-card:hover .industry-video {
  opacity: 1;
}

.industry-card:hover .industry-image {
  opacity: 0;
}

.industry-card-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-tebp);
  line-height: 1.3;
  margin-bottom: 0;
}

.industry-card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color, #666);
  margin-bottom: 0;
  flex: 1;
}

/* Scroll Animation Classes */
.industry-card.gsap-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.industry-card.gsap-fade-out {
  opacity: 0.3;
  transform: translateY(20px);
}

/* Custom Scrollbar */
.industry-cards-container::-webkit-scrollbar {
  width: 6px;
}

.industry-cards-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.industry-cards-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
  opacity: 0.7;
}

.industry-cards-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  opacity: 1;
}

/* GSAP ScrollTrigger Stack Animation Styles */
.industry-content {
  overflow: hidden;
}

.industry-cards-wrapper {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.industry-card {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease;
}

/* เพิ่ม smooth transition สำหรับ video hover */
.industry-video {
  transition: opacity 0.3s ease;
}

.industry-image {
  transition: opacity 0.3s ease;
}



/* Responsive - Mobile Styles */
@media (max-width: 991.98px) {
  .industry-card {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    scale: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .industry-cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0px !important;
    position: static !important;
    height: auto !important;
  }

  .industry-content {
    overflow: visible !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .industry-right-col {
    height: auto !important;
    overflow: visible !important;
  }

  .industry-cards-container {
    height: auto !important;
    overflow: visible !important;
  }
}

/* Industry Responsive */
@media (max-width: 1199.98px) {
  .industry-content {
    padding: 60px 0;
  }

  .industry-row {
    min-height: 90vh;
  }

  .industry-right-col {
    height: 90vh;
  }

  .industry-left-content {
    min-height: 400px;
    padding: 32px;
  }

  .industry-cards-wrapper {
    padding: 40px 15px;
    gap: 32px;
  }

  .industry-card {
    min-height: 400px;
  }
}

@media (max-width: 991.98px) {
  .industry-content {
    padding: 40px 0;
  }

  .industry-row {
    min-height: auto;
    flex-direction: column;
  }

  .industry-left-col {
    order: 1;
    /* margin-bottom: 20px; */
  }

  .industry-right-col {
    order: 2;
    height: auto;
    /* เปลี่ยนจาก 600px เป็น auto */
  }

  .industry-header {
    max-width: 600px;
  }

  .industry-left-content {
    min-height: auto;
    padding: 0 0px 40px 0px;
    justify-content: start;
  }

  .industry-header {
    text-align: start;
  }

  .industry-cards-wrapper {
    padding: 20px 15px;
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .industry-content {
    padding: 32px 0;
  }

  .industry-right-col {
    height: 500px;
  }

  .industry-card {
    min-height: 350px;
  }

  .industry-card-image {
    height: 200px;
  }

  .industry-card-content {
    padding: 24px;
    gap: 12px;
  }

  .industry-card-title {
    font-size: 18px;
  }

  .industry-card-description {
    font-size: 14px;
  }

  .industry-header h4 {
    font-size: 28px;
  }

  .industry-header p {
    font-size: 16px;
  }

  .industry-card {
    padding: 0;
    gap: 0;
  }

  .industry-card-image,
  .industry-video {
    border-radius: 0;
  }

}

@media (max-width: 575.98px) {
  .industry-right-col {
    height: 450px;
  }

  .industry-cards-wrapper {
    padding: 15px 10px;
    gap: 20px;
  }

  .industry-card {
    min-height: 320px;
  }

  .industry-card-image {
    height: 160px;
  }

  .industry-card-content {
    padding: 20px;
  }

  .industry-card-title {
    font-size: 16px;
  }

  .industry-card-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .industry-left-content {
    padding: 0 0px 20px 0px;
  }
}

/* =================================================================================== */
/* 17. COMPANY HISTORY TIMELINE */
/* =================================================================================== */

.company-history-intro {
  margin-bottom: 40px;
}

.history-intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--p-text);
  /* text-align: justify; */
  margin-bottom: 0;
}

.company-history-timeline {
  position: relative;
  padding-left: 0;
}

.company-history-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  z-index: -1;
}

.history-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
}

.history-year {
  position: relative;
  z-index: 2;
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.year-number {
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.3);
}

.history-content {
  flex: 1;
  margin-left: 40px;
}

.history-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
    /* border-left: 4px solid var(--primary); */
}

.history-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 20px;
}

.history-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 12px 0;
}

.history-subtitle:first-child {
  margin-top: 0;
}

.history-details {
  color: var(--p-text);
}

.history-details-text {
  font-size: 16px;
  margin: 0 0 12px 0;
}

.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
}

.history-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

.history-list li:last-child {
  margin-bottom: 0;
}

/* Company History Responsive */
@media (max-width: 1199.98px) {
  .history-card {
    padding: 28px;
  }

  .history-title {
    font-size: 20px;
  }

  .history-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .company-history-timeline::before {
    left: 50px;
  }

  .history-year {
    width: 100px;
  }

  .year-number {
    padding: 10px 16px;
    font-size: 16px;
    min-width: 70px;
  }

  .history-content {
    margin-left: 30px;
  }

  .history-card {
    padding: 24px;
  }

  .history-title {
    font-size: 18px;
  }

  .history-subtitle {
    font-size: 16px;
  }

  .history-list li {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .company-history-timeline::before {
    display: none;
  }

  .history-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .history-year {
    width: 80px;
    margin-bottom: 16px;
  }

  .year-number {
    padding: 8px 12px;
    font-size: 15px;
    min-width: 60px;
  }

  .history-content {
    margin-left: 0;
    width: 100%;
  }

  .history-card {
    padding: 20px;
    border-left-width: 3px;
  }

  .history-card:hover {
    border-left-width: 4px;
  }

  .history-title {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .history-subtitle {
    font-size: 15px;
    margin: 20px 0 10px 0;
  }

  .history-list li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .history-intro-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 575.98px) {
  .company-history-timeline::before {
    display: none;
  }

  .history-year {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .year-number {
    padding: 6px 10px;
    font-size: 14px;
    min-width: 50px;
  }

  .history-card {
    padding: 16px;
    border-radius: 12px;
  }

  .history-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .history-subtitle {
    font-size: 14px;
    margin: 16px 0 8px 0;
  }

  .history-list li {
    font-size: 12px;
    padding-left: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .history-intro-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .history-details-text {
    font-size: 14px;
  }
}

/* Timeline animations - simple approach */
/* =================================================================================== */
/* 18. VISION & MISSION SECTION */
/* =================================================================================== */

.vision-mission-section {
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Header */
.card-header-custom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.icon-wrapper .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0;
}

/* Vision Card */
.vision-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

/* .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #3d91e0, #66a3e8);
} */

.vision-content {
  text-align: center;
}

.vision-text-th {
  margin-bottom: 24px;
}

.vision-quote {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin: 0;
  position: relative;
}

.vision-text-en {
  padding: 20px;
  /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
  border-radius: 16px;
  /* border-left: 4px solid var(--primary); */
}

.vision-quote-en {
  font-size: 26px;
  font-weight: 500;
  color: var(--black-tebp);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Mission Card */
.mission-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

/* .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
} */

.mission-intro {
  margin-bottom: 40px;
  padding: 24px;
  /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
  border-radius: 16px;
  /* border-left: 4px solid #28a745; */
}

.mission-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--p-text);
  margin: 0;
}

/* Mission Items */
.mission-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.mission-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.mission-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.3);
}

.mission-text {
  flex: 1;
}

.mission-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.mission-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--p-text);
  margin: 0;
  /* text-align: justify; */
}

/* Responsive */
@media (max-width: 1199.98px) {

  .vision-card,
  .mission-card {
    padding: 32px;
  }

  .section-title {
    font-size: 22px;
  }

  .vision-quote {
    font-size: 32px;
  }

  .vision-quote-en {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {

  .vision-card,
  .mission-card {
    padding: 28px;
  }

  .card-header-custom {
    gap: 12px;
    margin-bottom: 24px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .icon-wrapper .material-symbols-rounded {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .vision-quote {
    font-size: 28px;
  }
  .vision-quote-en {
    font-size: 20px;
  }
  .vision-quote::before,
  .vision-quote::after {
    font-size: 36px;
    top: -8px;
  }

  .vision-quote::before {
    left: -15px;
  }

  .vision-quote::after {
    right: -15px;
  }
}

@media (max-width: 767.98px) {

  .vision-card,
  .mission-card {
    padding: 24px;
  }

  .card-header-custom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .vision-quote {
    font-size: 22px;
  }

  .vision-quote::before,
  .vision-quote::after {
    display: none;
  }

  .vision-quote-en {
    font-size: 18px;
  }

  .mission-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .mission-number {
    align-self: flex-start;
  }

  .mission-text h4 {
    font-size: 16px;
  }

  .mission-text p {
    font-size: 14px;
  }

  .mission-intro p {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {

  .vision-card,
  .mission-card {
    padding: 20px;
  }

  .section-title {
    font-size: 16px;
  }

  .vision-quote {
    font-size: 22px;
  }

  .vision-quote-en {
    font-size: 18px;
  }

  .mission-item {
    padding: 16px;
  }

  .mission-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .mission-text h4 {
    font-size: 15px;
  }

  .mission-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .mission-intro {
    padding: 20px;
  }

  .mission-intro p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* 
Nested sub-list styling */
.history-sub-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  padding-left: 20px;
}

.history-sub-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 14px;
  background-color: rgba(15, 117, 188, 0.05);
  border-radius: 8px;
  padding: 12px 24px;
  border-left: 3px solid var(--primary);
}

.history-sub-list li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

.history-sub-list li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for sub-list */
@media (max-width: 767.98px) {
  .history-sub-list {
    padding-left: 10px;
  }

  .history-sub-list li {
    font-size: 13px;
    padding: 10px 20px;
    padding-left: 20px;
  }

  .history-sub-list li::before {
    font-size: 14px;
    left: 8px;
  }
}

@media (max-width: 575.98px) {
  .history-sub-list li {
    font-size: 12px;
    padding: 8px 16px;
    padding-left: 16px;
    line-height: 1.5;
  }

  .history-sub-list li::before {
    font-size: 12px;
    left: 6px;
  }
}

/* =================================================================================== */
/* 17. BOARD MEMBER MODAL */
/* =================================================================================== */

.board-member-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.board-member-modal.show {
  display: flex;
  animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 24px 32px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px 24px 0 0;
  z-index: 10;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.modal-close:hover {
  background: #f8f9fa;
  color: var(--primary);
}

.modal-body {
  padding: 0 32px 32px 32px;
}

.member-profile-section {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

.member-image-container {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
}

.member-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.member-basic-info {
  flex: 1;
}

.member-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
  line-height: 1.3;
}

.member-position {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}





.member-additional-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.member-additional-info .info-item:first-child {
  grid-column: 1 / -1;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
}

.info-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-label .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
}

.info-value {
  font-size: 15px;
  color: var(--p-text);
  line-height: 1.6;
}

.education-section,
.work-history-section {
  margin-bottom: 32px;
}


.section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
}

.education-section .section-title,
.work-history-section .section-title {
  padding-bottom: 24px;
}

.education-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.education-item {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
}

.education-item:last-child {
  margin-bottom: 0;
}

.education-degree {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.education-institution {
  font-size: 14px;
  color: var(--p-text);
}

.work-history-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.work-history-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.work-history-table thead {
  background: var(--primary);
}

.work-history-table thead th {
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  border: none;
}

.work-history-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  vertical-align: top;
}

.work-history-table tbody tr:last-child td {
  border-bottom: none;
}

.work-history-table tbody tr:hover {
  background: #f8f9fa;
}

.period-cell {
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  min-width: 120px;
}

.position-cell {
  font-weight: 500;
  color: var(--black-tebp);
}

.company-cell {
  color: var(--p-text);
}

/* Modal Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Responsive */
@media (max-width: 991.98px) {
  .modal-content {
    max-width: 95vw;
    margin: 20px;
  }

  .member-profile-section {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
  }

  .member-image-container {
    width: 180px;
    height: 220px;
    margin: 0 auto;
  }

  .member-basic-info {
    width: 100%;
  }

  .member-image-container img {
    height: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal-header,
  .modal-body {
    padding: 20px 24px;
  }

  .modal-body {
    padding-bottom: 24px;
  }

  .info-value {
    text-align: start;
  }
}

@media (max-width: 767.98px) {
  .board-member-modal {
    padding: 10px;
  }

  .modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }

  .modal-header {
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
  }

  .modal-body {
    padding: 0 20px 20px 20px;
  }

  .member-name {
    font-size: 24px;
  }

  .member-position {
    font-size: 16px;
  }

  .member-profile-section {
    margin-bottom: 16px;
  }

  .member-image-container {
    width: 150px;
    height: 180px;
  }

  .member-basic-info {
    width: 100%;
  }

  .member-image-container img {
    height: 100%;
    border-radius: 12px;
  }



  .member-additional-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title {
    font-size: 20px;
  }

  .work-history-table {
    border-radius: 12px;
  }

  .work-history-table thead th {
    padding: 12px 16px;
    font-size: 14px;
  }

  .work-history-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .modal-content {
    border-radius: 12px;
  }

  .modal-header {
    border-radius: 12px 12px 0 0;
  }

  .member-name {
    font-size: 20px;
  }

  .member-position {
    font-size: 15px;
  }

  .member-profile-section {
    margin-bottom: 12px;
  }

  .member-image-container {
    width: 120px;
    height: 150px;
  }

  .member-basic-info {
    width: 100%;
  }

  .member-image-container img {
    height: 100%;
  }

  .info-item {
    padding: 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .work-history-table thead th {
    padding: 10px 12px;
    font-size: 14px;
  }

  .work-history-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .period-cell {
    min-width: 100px;
  }

  .education-section .section-title,
  .work-history-section .section-title {
    font-size: 16px;
  }

  .education-degree {
    font-size: 14px;
  }
}

/*
 =================================================================================== */
/* 15. BOARD OF DIRECTORS PAGE */
/* =================================================================================== */

.board-section {
  margin-bottom: 48px;
}

.board-header {
  margin-bottom: 24px;
}

.board-table-container {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.board-table-container .table {
  margin-bottom: 0;
}

.board-table-container .table thead th {
  background-color: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 24px;
  border: none;
}

.board-table-container .table tbody td {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
  vertical-align: middle;
}

.board-table-container .table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
}

.board-table-container .table tbody tr:last-child td {
  border-bottom: none;
}

/* Board Responsive */
@media (max-width: 991.98px) {
  .board-section {
    margin-bottom: 40px;
  }

  .board-header {
    margin-bottom: 20px;
  }

  .board-table-container .table thead th {
    font-size: 16px;
    padding: 16px 20px;
  }

  .board-table-container .table tbody td {
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .board-section {
    margin-bottom: 32px;
  }

  .board-table-container .table thead th {
    font-size: 14px;
    padding: 12px 16px;
  }

  .board-table-container .table tbody td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .board-table-container {
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .board-table-container .table thead th {
    font-size: 13px;
    padding: 10px 12px;
  }

  .board-table-container .table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .board-table-container {
    border-radius: 12px;
  }
}

/*
 =================================================================================== */
/* 16. BOARD MEMBER CARDS */
/* =================================================================================== */

/* Board Member Cards */
.board-member-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.board-member-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.board-member-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.board-member-card:hover .board-member-image img {
  transform: scale(1.02);
}

.board-member-info {
  padding: 24px 24px 60px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.board-member-info h6 {
  margin-bottom: 8px;
  line-height: 1.3;
}

.board-member-info p {
  margin-bottom: 0;
  line-height: 1.4;
}

.view-details-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 12px;
  background: rgba(15, 117, 188, 0.1);
  border-radius: 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.view-details-hint .material-symbols-rounded {
  font-size: 16px;
}

.board-member-card:hover .view-details-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Board Member Cards Responsive */
@media (max-width: 1199.98px) {

  .board-member-info {
    padding: 20px;
  }

  .board-member-image {
    height: 360px;
  }
}

@media (max-width: 991.98px) {

  .board-member-info {
    padding: 18px 18px 54px 18px;
  }

  .board-member-info h6 {
    font-size: 18px;
  }

  .board-member-info p {
    font-size: 15px;
  }

  .board-member-image {
    height: 340px;
  }

  .view-details-hint {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }
}

@media (max-width: 767.98px) {
  .board-member-card {
    border-radius: 16px;
  }

  .board-member-info {
    padding: 16px 16px 50px 16px;
  }

  .board-member-info h6 {
    font-size: 16px;
  }

  .board-member-info p {
    font-size: 14px;
  }

  .board-member-image {
    height: 320px;
  }

  .board-member-image img {
    object-fit: contain;
    background-color: #cacdd8;
  }

  .view-details-hint {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

}

@media (max-width: 575.98px) {
  .board-member-card {
    border-radius: 12px;
  }

  .board-member-info {
    padding: 14px 14px 46px 14px;
  }

  .board-member-info h6 {
    font-size: 15px;
  }

  .board-member-info p {
    font-size: 13px;
  }

  .board-member-image {
    height: 300px;
  }

  .view-details-hint {
    bottom: 14px;
    left: 14px;
    right: 14px;
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* =================================================================================== */
/* 16. ORGANIZATION CHART SECTION */
/* =================================================================================== */



.organization-chart-container {
  margin: 40px 0;
}

.organization-chart-img {
  transition: all 0.3s ease;
  cursor: pointer;
}

.organization-chart-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.chart-title-custom {
  font-size: 28px;
}

.chart-subtitle-custom {
  font-size: 24px;
}


.enlarge-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.organization-date {
  background: #f4f4f4;
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  display: inline-block;
}

.organization-date .material-symbols-rounded {
  color: var(--primary);
}

/* Organization Chart Additional Classes */
.org-logo {
  height: 120px;
}

.org-chart-img-base {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  box-shadow: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-wrapper-base {
  position: relative;
  display: inline-block;
}

.enlarge-hint-base {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.enlarge-hint-icon {
  font-size: 18px;
}

.org-date-icon {
  vertical-align: middle;
  margin-right: 8px;
}

.org-info-icon {
  vertical-align: middle;
  margin-right: 8px;
}

/* Organization Chart Responsive */
@media (max-width: 1199.98px) {
  .org-logo {
    height: 100px;
  }
}

@media (max-width: 991.98px) {
  .organization-chart-container {
    margin: 32px 0;
  }

  .enlarge-hint {
    font-size: 12px;
    padding: 6px 10px;
    top: 8px;
    right: 8px;
  }

  .organization-date {
    padding: 12px 20px;
  }

  .org-logo {
    height: 90px;
  }
}

@media (max-width: 767.98px) {
  .organization-chart-container {
    margin: 24px 0;
  }

  .chart-title-custom {
    font-size: 20px;
  }

  .chart-subtitle-custom {
    font-size: 16px;
  }

  .enlarge-hint {
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 16px;
  }

  .organization-date {
    padding: 10px 16px;
    font-size: 16px;
  }

  .chart-wrapper img {
    border-radius: 6px !important;
  }

  .org-logo {
    height: 80px;
  }
}

@media (max-width: 575.98px) {

  .chart-title-custom {
    font-size: 18px;
  }

  .chart-subtitle-custom {
    font-size: 14px;
  }

  .chart-wrapper {
    position: relative;
  }

  .org-logo {
    height: 70px;
  }
}

/* Skeleton Loading Classes */
.skeleton-navbar {
  background: none !important;
  background-color: #FFF !important;
}

.skeleton-banner {
  height: 400px;
}

.skeleton-title {
  width: 360px;
  height: 45px;
}

/* Modal Grid Classes */
.info-item-full {
  grid-column: 1 / -1;
}

/* Lightbox customization */
.lb-data .lb-caption {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.lb-data .lb-number {
  font-family: 'Prompt', sans-serif;
}

/* 
=================================================================================== */
/* 19. CORPORATE GOVERNANCE PAGE */
/* =================================================================================== */

.governance-intro-section,
.governance-principle-section,
.governance-transitional-section,
.governance-principles-main,
.governance-gallery,
.governance-summary {
  margin-bottom: 32px;
}


.corporate-governance-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto;
}

/* Intro Card */
.intro-card,
.principle-card,
.transitional-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

.intro-content p,
.principle-content p,
.transitional-content p {
  line-height: 1.8;
  /* text-align: justify; */
}

/* Alert Box */
.alert-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.alert-icon {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Principle Items */
.principle-item {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
  position: relative;
  transition: all 0.3s ease;
}

.principle-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.principle-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.principle-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.principle-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-tebp);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

/* Responsibilities Grid */
.responsibilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.responsibility-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.responsibility-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.responsibility-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsibility-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.responsibility-content {
  flex: 1;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.objective-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.objective-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.objective-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.objective-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.objective-content {
  flex: 1;
}

/* CTA Card */
.cta-card {
  background: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.cta-card h4,
.cta-card p {
  color: white;
  position: relative;
  z-index: 1;
}

.cta-card .link--btn {
  background: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-card .link--btn:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .corporate-governance-section {
    padding: 64px 0;
  }

  .intro-card,
  .principle-card,
  .transitional-card {
    padding: 32px;
  }

  .principle-item {
    padding: 28px;
  }

  .principle-title {
    font-size: 20px;
  }

  .cta-card {
    padding: 40px;
  }
}

@media (max-width: 991.98px) {
  .corporate-governance-section {
    padding: 48px 0;
  }

  .principle-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .principle-number {
    align-self: center;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .responsibilities-grid {
    gap: 20px;
  }

  .responsibility-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .responsibility-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .objective-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .objective-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767.98px) {

  .intro-card,
  .principle-card,
  .transitional-card {
    padding: 24px;
    border-radius: 16px;
  }

  .principle-item {
    padding: 20px;
    border-radius: 16px;
  }

  .card-header-custom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    align-self: center;
  }

  .icon-wrapper .material-symbols-rounded {
    font-size: 24px;
  }

  .section-title {
    font-size: 18px;
  }

  .principle-title {
    font-size: 18px;
  }

  .alert-box {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .alert-icon {
    align-self: center;
  }

  .responsibility-item,
  .objective-item {
    padding: 20px;
  }

  .cta-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {

  .governance-intro-section,
  .governance-principle-section,
  .governance-transitional-section,
  .governance-principles-main,
  .governance-gallery,
  .governance-summary {
    margin-bottom: 24px;
  }

  .intro-card,
  .principle-card,
  .transitional-card {
    padding: 20px;
    border-radius: 12px;
  }

  .principle-item {
    padding: 16px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 16px;
  }

  .principle-title {
    font-size: 16px;
  }

  .principle-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .responsibility-item,
  .objective-item {
    padding: 16px;
    border-radius: 12px;
  }

  .responsibility-icon,
  .objective-icon {
    width: 40px;
    height: 40px;
  }

  .responsibility-icon .material-symbols-rounded,
  .objective-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .cta-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .cta-card .link--btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Summary Card */
.summary-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

/* Commitment Grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.commitment-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.commitment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.commitment-item:hover::before {
  transform: scaleX(1);
}

.commitment-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.commitment-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 2px 8px rgba(15, 117, 188, 0.15);
  /* Keep animation for commitment icons only */
  animation: float 3s ease-in-out infinite;
}

.commitment-icon .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

/* Documents Card */
.documents-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.document-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.document-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.document-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.document-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.document-content {
  flex: 1;
}

.document-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.document-link:hover {
  color: var(--primary-hover);
}

.document-link .material-symbols-rounded {
  font-size: 18px;
}

/* Enhanced CTA Card */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  min-width: 180px;
  justify-content: center;
}

.cta-btn.primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-1px);
}

.cta-btn .material-symbols-rounded {
  font-size: 20px;
}

/* Additional Responsive Adjustments */
@media (max-width: 991.98px) {
  .commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .document-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .document-icon {
    align-self: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    min-width: 200px;
  }
}

@media (max-width: 767.98px) {

  .summary-card,
  .documents-card {
    padding: 24px;
    border-radius: 16px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commitment-item {
    padding: 20px;
  }

  .commitment-icon {
    width: 50px;
    height: 50px;
  }

  .commitment-icon .material-symbols-rounded {
    font-size: 24px;
  }

  .document-item {
    padding: 20px;
  }

  .document-icon {
    width: 45px;
    height: 45px;
  }

  .document-icon .material-symbols-rounded {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {

  .summary-card,
  .documents-card {
    padding: 20px;
    border-radius: 12px;
  }

  .commitment-item {
    padding: 16px;
    border-radius: 12px;
  }

  .commitment-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .commitment-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .document-item {
    padding: 16px;
    border-radius: 12px;
  }

  .document-icon {
    width: 40px;
    height: 40px;
  }

  .document-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 160px;
  }

  .cta-btn .material-symbols-rounded {
    font-size: 18px;
  }
}

/*
 Board Effectiveness Grid */
.board-effectiveness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.effectiveness-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.effectiveness-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.effectiveness-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.effectiveness-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.effectiveness-content {
  flex: 1;
}

/* HR Management Grid */
.hr-management-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.hr-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.hr-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hr-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hr-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.hr-content {
  flex: 1;
}

/* Enhanced Responsive for New Sections */
@media (max-width: 991.98px) {

  .board-effectiveness-grid,
  .hr-management-grid {
    gap: 16px;
  }

  .effectiveness-item,
  .hr-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .effectiveness-icon,
  .hr-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }

  .effectiveness-icon .material-symbols-rounded,
  .hr-icon .material-symbols-rounded {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {

  .effectiveness-item,
  .hr-item {
    padding: 20px;
    border-radius: 12px;
  }

  .effectiveness-icon,
  .hr-icon {
    width: 40px;
    height: 40px;
  }

  .effectiveness-icon .material-symbols-rounded,
  .hr-icon .material-symbols-rounded {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {

  .effectiveness-item,
  .hr-item {
    padding: 16px;
    border-radius: 10px;
  }

  .effectiveness-icon,
  .hr-icon {
    width: 35px;
    height: 35px;
  }

  .effectiveness-icon .material-symbols-rounded,
  .hr-icon .material-symbols-rounded {
    font-size: 18px;
  }
}

/* Innovation Grid */
.innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.innovation-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.innovation-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* =================================================================================== */
/* 20. CONTACT IR PAGE */
/* =================================================================================== */

/* Contact Person Info Inline */
.contact-person-info {
  margin-top: 24px;
  margin-bottom: 24px;
}

.person-header-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  margin-bottom: 24px;
}

.person-header-inline .person-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.person-header-inline .person-icon .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

.person-header-inline .person-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.person-header-inline .person-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Quick Contact Actions */
.quick-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.quick-contact-btn:hover {
  border-color: var(--primary);
  background: rgba(15, 117, 188, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.quick-contact-btn .btn-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-contact-btn .btn-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.quick-contact-btn .btn-content {
  flex: 1;
}

.quick-contact-btn .btn-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.quick-contact-btn .btn-subtitle {
  display: block;
  font-size: 14px;
  color: var(--p-text);
}

.call-btn:hover .btn-icon {
  background: var(--primary-hover);
}

.email-btn:hover .btn-icon {
  background: var(--primary-hover);
}

/* Contact Note */
.contact-note {
  background: rgba(15, 117, 188, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.note-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.note-icon .material-symbols-rounded {
  color: var(--primary);
  font-size: 20px;
}

.note-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--p-text);
  margin-bottom: 0;
}

/* Map Section Styles */
.map-container {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-info {
  margin-top: 20px;
}

.map-note {
  background: rgba(15, 117, 188, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.map-note .note-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-note .note-icon .material-symbols-rounded {
  color: var(--primary);
  font-size: 20px;
}

.map-note .note-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--p-text);
  margin-bottom: 0;
}

/* Contact IR Responsive */
@media (max-width: 767.98px) {
  .person-header-inline {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px;
  }

  .person-header-inline .person-icon {
    width: 50px;
    height: 50px;
  }

  .person-header-inline .person-icon .material-symbols-rounded {
    font-size: 24px;
  }

  .person-header-inline .person-name {
    font-size: 18px;
  }

  .quick-contact-btn {
    padding: 14px 16px;
  }

  .quick-contact-btn .btn-icon {
    width: 45px;
    height: 45px;
  }

  .quick-contact-btn .btn-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .map-container iframe {
    height: 300px;
    border-radius: 12px;
  }

  .map-note {
    padding: 14px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .map-note .note-icon {
    align-self: center;
  }
}

@media (max-width: 575.98px) {
  .person-header-inline {
    padding: 14px;
  }

  .person-header-inline .person-icon {
    width: 45px;
    height: 45px;
  }

  .person-header-inline .person-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .person-header-inline .person-name {
    font-size: 16px;
  }

  .quick-contact-btn {
    padding: 12px 14px;
  }

  .quick-contact-btn .btn-icon {
    width: 40px;
    height: 40px;
  }

  .quick-contact-btn .btn-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .map-container iframe {
    height: 250px;
    border-radius: 8px;
  }

  .map-note {
    padding: 12px;
  }

  .map-note .note-text {
    font-size: 13px;
  }
}

/* =================================================================================== */
/* 20. OTHER DOCUMENTS PAGE */
/* =================================================================================== */

/* Documents Grid Layout */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Document Item Cards */
.document-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.document-item:hover {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Document Icons */
.document-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.document-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

/* Document Content */
.document-content h6 {
  color: var(--black-tebp);
  font-size: 18px;
  line-height: 1.4;
}

.document-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item .material-symbols-rounded {
  font-size: 16px;
  color: var(--grey);
}

.document-actions {
  margin-top: 20px;
}

/* Other Documents Responsive */
@media (max-width: 991.98px) {
  .documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .document-item {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .document-item {
    padding: 20px;
    border-radius: 12px;
  }

  .document-icon {
    width: 45px;
    height: 45px;
    /* margin-bottom: 16px; */
  }

  .document-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .document-content h6 {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .document-item {
    padding: 16px;
    border-radius: 12px;
  }

  .document-icon {
    width: 40px;
    height: 40px;
    /* margin-bottom: 12px; */
  }

  .document-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .document-content h6 {
    font-size: 15px;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}



/* =================================================================================== */
/* 21. FAQ PAGE */
/* =================================================================================== */

/* FAQ Introduction */
.faq-intro .card-header-custom {
  align-items: flex-start;
}

/* FAQ Category Cards */
.faq-category-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.category-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.category-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0;
}

.faq-intro {
  margin-bottom: 32px;
}

.faq-categories {
  margin-bottom: 32px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-header {
  margin: 0;
}

.faq-button {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-button:not(.collapsed) {
  background: #f8f9fa;
  color: var(--primary);
}

.faq-button:focus {
  box-shadow: none;
  outline: none;
}

.faq-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-number {
  background: var(--primary);
  transform: scale(1.1);
}

.faq-question {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--black-tebp);
  line-height: 1.4;
}

.faq-icon {
  font-size: 24px;
  color: var(--grey);
  transition: transform 0.3s ease;
}

.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 24px;
  background: white;
  border-top: 1px solid #f0f0f0;
}

.faq-answer p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--p-text);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* FAQ Lists */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.faq-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--p-text);
}

.faq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Highlight Boxes */
.highlight-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-box .material-symbols-rounded {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

/* BCG Grid */
.bcg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

.bcg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
}

.bcg-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcg-icon .material-symbols-rounded {
  color: white;
  font-size: 20px;
}

.bcg-item h6 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-tebp);
}

.bcg-item p {
  margin: 0;
  font-size: 13px;
  color: var(--p-text);
}

/* Stock Info */
.stock-info {
  margin: 16px 0;
}

.stock-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.stock-detail .material-symbols-rounded {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-item .material-symbols-rounded {
  color: var(--primary);
  font-size: 18px;
}

/* ESG Grid */
.esg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.esg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.esg-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esg-icon .material-symbols-rounded {
  color: white;
  font-size: 18px;
}

.esg-item h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-tebp);
}

.esg-item p {
  margin: 0;
  font-size: 12px;
  color: var(--p-text);
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-arrow {
  color: var(--primary);
  font-size: 20px;
  font-weight: bold;
}

/* Tech Features */
.tech-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tech-item .material-symbols-rounded {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

/* Capacity Info */
.capacity-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 20px 0;
}

.capacity-item {
  text-align: center;
}

.capacity-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.capacity-label {
  font-size: 14px;
  color: var(--p-text);
  margin-top: 4px;
}

/* FAQ Contact CTA */
.faq-contact-cta {
  margin-top: 32px;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  border-radius: 24px;
  padding: 40px;
  color: white;
  text-align: center;
}

.cta-content {
  margin-bottom: 32px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.cta-icon .material-symbols-rounded {
  color: white;
  font-size: 40px;
}

.cta-text h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 24px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.cta-btn.primary {
  background: white;
  color: var(--primary);
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}



/* FAQ Responsive */
@media (max-width: 991.98px) {
  .faq-categories .row.g-4 {
    --bs-gutter-y: 2rem;
  }

  .faq-category-card {
    padding: 24px;
    margin-bottom: 0;
  }

  .category-header {
    margin-bottom: 20px;
  }

  .faq-button {
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 20px;
  }

  .process-flow {
    flex-direction: column;
    gap: 12px;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .capacity-info {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .faq-categories .row.g-4 {
    --bs-gutter-y: 1.5rem;
  }

  .faq-category-card {
    padding: 20px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category-title {
    font-size: 18px;
  }

  .faq-button {
    padding: 14px 16px;
    gap: 12px;
  }

  .faq-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    padding: 16px;
  }

  .bcg-grid,
  .esg-grid {
    gap: 12px;
  }

  .bcg-item,
  .esg-item {
    padding: 12px;
  }

  .cta-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    min-width: 200px;
  }
}

@media (max-width: 575.98px) {
  .faq-categories .row.g-4 {
    --bs-gutter-y: 1.5rem;
  }

  .faq-category-card {
    padding: 16px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-button {
    padding: 12px 14px;
    gap: 10px;
  }

  .faq-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    padding: 14px;
  }

  .capacity-info {
    gap: 16px;
  }

  .capacity-number {
    font-size: 24px;
  }

  .cta-card {
    padding: 24px 20px;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .cta-icon .material-symbols-rounded {
    font-size: 30px;
  }

  .cta-text h4 {
    font-size: 20px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 160px;
  }
}

.innovation-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.innovation-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.innovation-content {
  flex: 1;
}

/* Risk Management Grid */
.risk-management-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.risk-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.risk-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.risk-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.risk-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.risk-content {
  flex: 1;
}

/* Enhanced Responsive for Innovation and Risk Management Sections */
@media (max-width: 991.98px) {

  .innovation-grid,
  .risk-management-grid {
    gap: 16px;
  }

  .innovation-item,
  .risk-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .innovation-icon,
  .risk-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }

  .innovation-icon .material-symbols-rounded,
  .risk-icon .material-symbols-rounded {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {

  .innovation-item,
  .risk-item {
    padding: 20px;
    border-radius: 12px;
  }

  .innovation-icon,
  .risk-icon {
    width: 40px;
    height: 40px;
  }

  .innovation-icon .material-symbols-rounded,
  .risk-icon .material-symbols-rounded {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {

  .innovation-item,
  .risk-item {
    padding: 16px;
    border-radius: 10px;
  }

  .innovation-icon,
  .risk-icon {
    width: 35px;
    height: 35px;
  }

  .innovation-icon .material-symbols-rounded,
  .risk-icon .material-symbols-rounded {
    font-size: 18px;
  }
}

/* 
Financial Disclosure Grid */
.financial-disclosure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.disclosure-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.disclosure-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disclosure-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclosure-icon .material-symbols-rounded.custom-icon-disclosure {
  color: white;
  font-size: 24px;
}

.disclosure-content {
  flex: 1;
}

/* Shareholder Engagement Grid */
.shareholder-engagement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.engagement-item {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.engagement-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.engagement-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.engagement-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.engagement-content {
  flex: 1;
}

/* Enhanced Responsive for Financial Disclosure and Shareholder Engagement Sections */
@media (max-width: 991.98px) {

  .financial-disclosure-grid,
  .shareholder-engagement-grid {
    gap: 16px;
  }

  .disclosure-item,
  .engagement-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .disclosure-icon,
  .engagement-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }

  .disclosure-icon .material-symbols-rounded,
  .engagement-icon .material-symbols-rounded {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {

  .disclosure-item,
  .engagement-item {
    padding: 20px;
    border-radius: 12px;
  }

  .disclosure-icon,
  .engagement-icon {
    width: 40px;
    height: 40px;
  }

  .disclosure-icon .material-symbols-rounded,
  .engagement-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .faq-intro {
    margin-bottom: 24px;
  }

  .faq-categories {
    margin-bottom: 24px;
  }

  .faq-contact-cta {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {

  .disclosure-item,
  .engagement-item {
    padding: 16px;
    border-radius: 10px;
  }

  .disclosure-icon,
  .engagement-icon {
    width: 35px;
    height: 35px;
  }

  .disclosure-icon .material-symbols-rounded,
  .engagement-icon .material-symbols-rounded {
    font-size: 18px;
  }
}

/*===================================================================================*/
/* 20. PRINCIPLES ACCORDION */
/* =================================================================================== */

.principles-accordion {
  margin-top: 32px;
}

.principles-accordion .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 24px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.principles-accordion .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.principles-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.principles-accordion .accordion-header {
  margin-bottom: 0;
}

.principles-accordion .accordion-button {
  background: #fafafa;
  border: none;
  padding: 24px 32px;
  font-weight: 600;
  color: var(--black-tebp);
  border-radius: 16px !important;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.principles-accordion .accordion-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.principles-accordion .accordion-button:hover::before,
.principles-accordion .accordion-button:not(.collapsed)::before {
  transform: scaleY(1);
}

.principles-accordion .accordion-button:hover {
  background: #ffffff;
  color: var(--primary);
}

.principles-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(15, 117, 188, 0.15);
}

.principles-accordion .accordion-button:not(.collapsed)::before {
  background: rgba(255, 255, 255, 0.3);
}

.principles-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.principles-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-principle-header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.accordion-principle-header .principle-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 117, 188, 0.15);
  transition: all 0.3s ease;
}

.principles-accordion .accordion-button:not(.collapsed) .principle-number {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.principle-title-text {
  font-size: 18px;
  line-height: 1.4;
  flex: 1;
}

.principles-accordion .accordion-body {
  padding: 32px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.principles-accordion .accordion-collapse {
  border-radius: 0 0 16px 16px;
}

/* Accordion Animation */
.principles-accordion .accordion-collapse.collapsing {
  transition: height 0.4s ease;
}

.principles-accordion .accordion-collapse.show {
  animation: accordionSlideIn 0.4s ease;
}

@keyframes accordionSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Accordion */
@media (max-width: 991.98px) {
  .principles-accordion .accordion-button {
    padding: 20px 24px;
  }

  .accordion-principle-header {
    gap: 16px;
  }

  .accordion-principle-header .principle-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .principle-title-text {
    font-size: 16px;
  }

  .principles-accordion .accordion-body {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .principles-accordion .accordion-item {
    border-radius: 12px !important;
    margin-bottom: 12px;
  }

  .principles-accordion .accordion-button {
    padding: 16px 20px;
    border-radius: 12px !important;
  }

  .accordion-principle-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .accordion-principle-header .principle-number {
    width: 45px;
    height: 45px;
    font-size: 15px;
    align-self: center;
  }

  .principle-title-text {
    font-size: 15px;
    text-align: center;
  }

  .principles-accordion .accordion-body {
    padding: 20px;
  }

  .principles-accordion .accordion-collapse {
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 575.98px) {
  .principles-accordion .accordion-button {
    padding: 14px 16px;
  }

  .accordion-principle-header .principle-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .principle-title-text {
    font-size: 14px;
    line-height: 1.3;
  }

  .principles-accordion .accordion-body {
    padding: 16px;
  }
}

/* Enhanced Grid Responsiveness in Accordion */
@media (max-width: 991.98px) {

  .principles-accordion .responsibilities-grid,
  .principles-accordion .board-effectiveness-grid,
  .principles-accordion .hr-management-grid,
  .principles-accordion .innovation-grid,
  .principles-accordion .risk-management-grid,
  .principles-accordion .financial-disclosure-grid,
  .principles-accordion .shareholder-engagement-grid {
    gap: 16px;
  }

  .principles-accordion .responsibility-item,
  .principles-accordion .effectiveness-item,
  .principles-accordion .hr-item,
  .principles-accordion .innovation-item,
  .principles-accordion .risk-item,
  .principles-accordion .disclosure-item,
  .principles-accordion .engagement-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .principles-accordion .responsibility-icon,
  .principles-accordion .effectiveness-icon,
  .principles-accordion .hr-icon,
  .principles-accordion .innovation-icon,
  .principles-accordion .risk-icon,
  .principles-accordion .disclosure-icon,
  .principles-accordion .engagement-icon {
    align-self: center;
    width: 45px;
    height: 45px;
  }
}

/* Accordio
n Fade-in Animation */
.accordion-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: accordionFadeIn 0.6s ease forwards;
}

@keyframes accordionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Floating Animation - Only for Commitment Icons */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Card Header Custom */
.card-header-custom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0;
}

/* Responsive adjustments for card headers */
@media (max-width: 767.98px) {
  .card-header-custom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    align-self: center;
  }

  .icon-wrapper .material-symbols-rounded {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 18px;
  }
}

/* Governance Gallery Section */
.governance-gallery {
  margin-top: 32px;
}

.gallery-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

.governance-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.image-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-item:hover .image-wrapper img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 1;
  transition: all 0.3s ease;
}

.image-item:hover .image-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.overlay-content {
  width: 100%;
}

.overlay-content h5 {
  color: white;
  margin-bottom: 8px;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Gallery */
@media (max-width: 1199.98px) {
  .governance-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .gallery-card {
    padding: 32px;
  }
}

@media (max-width: 991.98px) {
  .governance-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .image-wrapper {
    height: 240px;
  }

  .image-overlay {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .governance-images-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-card {
    padding: 24px;
  }

  .image-wrapper {
    height: 220px;
  }

  .image-overlay {
    padding: 16px;
  }

  .overlay-content h5 {
    font-size: 16px;
  }

  .overlay-content p {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .gallery-card {
    padding: 20px;
    border-radius: 12px;
  }

  .image-wrapper {
    height: 200px;
    border-radius: 12px;
  }

  .image-item {
    border-radius: 12px;
  }

  .image-overlay {
    padding: 16px;
  }

  .overlay-content h5 {
    font-size: 15px;
  }

  .overlay-content p {
    font-size: 12px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .image-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%);
  }
}

/* =================================================================================== */
/* COMMITMENT ITEMS STYLES */
/* =================================================================================== */

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.commitment-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.commitment-item:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 117, 188, 0.15);
}

.commitment-item:hover .commitment-icon span {
  color: #ffffff;
}

.commitment-item:hover h5 {
  color: #ffffff !important;
}

.commitment-item:hover p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  ;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.commitment-icon span {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Floating animation for commitment icons */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.commitment-icon {
  animation: float 3s ease-in-out infinite;
}

.commitment-item:nth-child(2) .commitment-icon {
  animation-delay: -0.5s;
}

.commitment-item:nth-child(3) .commitment-icon {
  animation-delay: -1s;
}

.commitment-item:nth-child(4) .commitment-icon {
  animation-delay: -1.5s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .commitment-item {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commitment-item {
    padding: 24px;
    border-radius: 12px;
  }

  .commitment-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .commitment-icon span {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .commitment-item {
    padding: 20px;
  }

  .commitment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .commitment-icon span {
    font-size: 24px;
  }
}

/* =================================================================================== */
/* DOCUMENTS SECTION STYLES */
/* =================================================================================== */

.documents-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

/* Featured Document */
.featured-document {
  margin-bottom: 40px;
}

.document-hero {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid rgba(15, 117, 188, 0.1);
  transition: all 0.3s ease;
}

.document-hero:hover {
  border-color: rgba(15, 117, 188, 0.2);
  box-shadow: 0 8px 32px rgba(15, 117, 188, 0.1);
  transform: translateY(-2px);
}

.document-hero-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #949494 0%, #e3e3e3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.document-hero-icon span {
  font-size: 32px;
  color: #ffffff;
}

.document-hero-content {
  flex: 1;
}

.document-meta {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item span.material-symbols-rounded {
  font-size: 18px;
  color: var(--primary);
}

.document-hero-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.download-btn,
.view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
}

.download-btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.download-btn.primary:hover {
  background: #0d5a9a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.3);
}

.view-btn.secondary {
  background-color: #f7f8fa;
  color: var(--black-tebp);
  border: 1px solid #e7e7e7 !important;
}

.view-btn.secondary:hover {
  background: var(--black-tebp);
  color: #ffffff;
  box-shadow: none
}

/* Additional Resources */
.additional-resources {
  border-top: 1px solid #f0f0f0;
  padding-top: 32px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: rgba(15, 117, 188, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 117, 188, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-icon span {
  font-size: 24px;
  color: var(--primary);
}

.resource-content {
  flex: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-link:hover {
  color: #0d5a9a;
  text-decoration: underline;
}

.resource-link span {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .document-hero {
    flex-direction: column;
    text-align: center;
  }

  .document-hero-action {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .document-meta {
    justify-content: center;
  }

  .document-hero {
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  .documents-card {
    padding: 32px;
  }

  .document-hero {
    padding: 24px;
    gap: 20px;
  }

  .document-hero-icon {
    width: 64px;
    height: 64px;
  }

  .document-hero-icon span {
    font-size: 32px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .documents-card {
    padding: 24px;
  }

  .document-hero {
    padding: 20px;
  }

  .document-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .document-hero-icon span {
    font-size: 28px;
  }

  .document-meta {
    flex-direction: column;
    gap: 12px;
  }

  .document-hero-action {
    flex-direction: column;
    gap: 8px;
  }

  .download-btn,
  .view-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .resource-item {
    padding: 16px;
    border-radius: 12px;
  }

  .resource-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .resource-icon span {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .documents-card {
    padding: 20px;
  }

  .document-hero {
    padding: 16px;
  }

  .additional-resources {
    padding-top: 24px;
  }

  .featured-document {
    margin-bottom: 32px;
  }
}

/* =================================================================================== */
/* DOWNLOAD BUTTON ANIMATION STYLES */
/* =================================================================================== */

/* Download Button Base Styles */
.download-btn,
.download-btn-small {
  position: relative;
  overflow: hidden;
}

.download-btn.downloading,
.download-btn-small.downloading {
  pointer-events: none;
}

/* Hide original icon when downloading or success */
.download-btn.downloading .btn-icon,
.download-btn.success .btn-icon,
.download-btn-small.downloading .btn-icon,
.download-btn-small.success .btn-icon {
  opacity: 0 !important;
}

/* Button Text Styles */
.download-btn .btn-text,
.download-btn-small .btn-text {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.download-btn .btn-icon,
.download-btn-small .btn-icon {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Loading Spinner for main button */
.download-btn .download-spinner {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.download-btn.downloading .download-spinner {
  opacity: 1;
}

.download-btn .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Icon for main button */
.download-btn .download-success {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  opacity: 0;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
}

.download-btn.success .download-success {
  opacity: 1;
  animation: successPop 0.5s ease-out;
}

.download-btn.success .download-spinner {
  opacity: 0;
}

/* Loading Spinner for small button */
.download-btn-small .download-spinner {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.download-btn-small.downloading .download-spinner {
  opacity: 1;
}

.download-btn-small .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(15, 117, 188, 0.3);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Icon for small button */
.download-btn-small .download-success {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  opacity: 0;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
}

.download-btn-small.success .download-success {
  opacity: 1;
  animation: successPop 0.5s ease-out;
}

.download-btn-small.success .download-spinner {
  opacity: 0;
}

/* Progress Bar */
.download-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  width: 0%;
  transition: width 2s ease-out;
  border-radius: 0 0 12px 12px;
}

.download-btn.downloading .download-progress {
  width: 100%;
}

/* Keyframe Animations */
@keyframes downloadPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes successPop {
  0% {
    transform: translateY(-50%) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Button Ripple Effect */
.download-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.download-btn:active::before {
  width: 300px;
  height: 300px;
}

/* ===
================================================================================ */
/* 16. OTHER DOCUMENTS PAGE */
/* =================================================================================== */

.document-section {
  margin-bottom: 60px;
}

.document-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.document-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.document-icon {
  width: 50px;
  height: 50px;
  background-color: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.document-icon span {
  color: var(--grey);
  font-size: 24px;
}

.document-icon.custom-bg {
  box-shadow: none;
}

.document-icon.custom-bg .material-symbols-rounded {
  color: var(--grey);
}

.document-info h6 {
  line-height: 1.4;
  margin-bottom: 4px;
}

.download-btn .circle--btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn .circle--btn span {
  font-size: 20px;
}

.download-btn .circle--btn:hover {
  transform: scale(1.05);
}

/* Document Cards Responsive */
@media (max-width: 991.98px) {
  .document-section {
    margin-bottom: 40px;
  }

  .document-card {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .document-card {
    padding: 18px;
    margin-bottom: 16px;
  }

  .document-icon {
    width: 45px;
    height: 45px;
  }

  .document-icon span {
    font-size: 22px;
  }

  .download-btn .circle--btn {
    width: 40px;
    height: 40px;
  }

  .download-btn .circle--btn span {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .document-card {
    padding: 16px;
  }

  .document-info h6 {
    font-size: 16px;
  }

  .document-info p {
    font-size: 12px;
  }

  .document-icon {
    width: 40px;
    height: 40px;
  }

  .document-icon span {
    font-size: 20px;
  }

  .download-btn .circle--btn {
    width: 38px;
    height: 38px;
  }

  .download-btn .circle--btn span {
    font-size: 16px;
  }
}

/* ===
================================================================================ */
/* 22. CONTACT IR PAGE */
/* =================================================================================== */

/* Contact Introduction */
.contact-intro .card-header-custom {
  align-items: flex-start;
}

/* Contact Main Card */
.contact-main-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

/* Contact Person Section */
.contact-person-section {
  height: 100%;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f8f9fa;
}

.contact-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 117, 188, 0.2);
  flex-shrink: 0;
}

.contact-avatar .material-symbols-rounded {
  color: white;
  font-size: 40px;
}

.contact-info h5 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-position {
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.contact-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
}

.contact-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.contact-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: #3d91e0;
  text-decoration: underline;
}

/* Address Section */
.address-section {
  height: 100%;
}

.address-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.address-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.address-icon .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

.address-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0;
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Address Text Simple */
.address-text-simple p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--p-text);
  margin: 0 0 20px 0;
  padding: 0;
  background: none;
}

/* Map Container */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.map-btn:hover {
  background: #3d91e0;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 117, 188, 0.3);
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.method-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card:hover {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.method-icon.phone {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.method-icon.email {
  background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

.method-icon.visit {
  background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
}

.method-icon .material-symbols-rounded {
  color: white;
  font-size: 28px;
}

.method-content h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 12px;
}

.method-content p {
  font-size: 14px;
  color: var(--p-text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.method-link:hover {
  color: #3d91e0;
  transform: translateX(4px);
}

.office-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--p-text);
  font-size: 14px;
  font-weight: 500;
}

.office-hours .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary);
}

/* Information Categories */
.info-categories {
  margin-top: 32px;
}

.info-category {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  height: 100%;
  transition: all 0.3s ease;
}

.info-category:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}

.category-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.category-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 12px;
}

.category-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--p-text);
  line-height: 1.4;
}

.category-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.category-content li:last-child {
  margin-bottom: 0;
}

/* Quick Contact CTA */
.quick-contact-cta {
  margin-top: 40px;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  border-radius: 24px;
  padding: 48px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-content {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  backdrop-filter: blur(10px);
}

.cta-icon .material-symbols-rounded {
  color: white;
  font-size: 40px;
}

.cta-text h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.cta-btn.primary {
  background: white;
  color: var(--primary);
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
  backdrop-filter: blur(10px);
}



/* Contact IR Responsive */
@media (max-width: 1399.98px) {
  .map-custom {
    height: 310px;
  }

  .map-custom:lang(en) {
    height: 300px;
  }
}

@media (max-width: 1199.98px) {
  .map-custom {
    height: 330px;
  }

  .map-custom:lang(en) {
    height: 370px;
  }
}

/* Contact IR Responsive */
@media (max-width: 991.98px) {
  .contact-main-card {
    padding: 24px;
  }

  .contact-header {
    margin-bottom: 24px;
  }

  .contact-avatar {
    width: 70px;
    height: 70px;
  }

  .contact-avatar .material-symbols-rounded {
    font-size: 32px;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .method-card {
    padding: 20px;
  }

  .info-category {
    padding: 20px;
  }

  .cta-card {
    padding: 40px 32px;
  }

  .map-custom {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .contact-main-card {
    padding: 20px;
  }

  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .contact-info h5 {
    font-size: 20px;
  }

  .address-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .address-icon {
    width: 50px;
    height: 50px;
  }

  .address-icon .material-symbols-rounded {
    font-size: 24px;
  }

  .address-title {
    font-size: 18px;
  }

  .method-card {
    padding: 20px;
    text-align: center;
  }

  .method-icon {
    margin: 0 auto 16px auto;
  }

  .info-category {
    padding: 20px;
    text-align: center;
  }

  .category-icon {
    margin: 0 auto 16px auto;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-text h4 {
    font-size: 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    min-width: 200px;
  }
}

@media (max-width: 575.98px) {
  .contact-main-card {
    padding: 16px;
    border-radius: 12px;
  }

  .contact-avatar {
    width: 60px;
    height: 60px;
  }

  .contact-avatar .material-symbols-rounded {
    font-size: 28px;
  }

  .contact-info h5 {
    font-size: 18px;
  }

  .contact-item {
    padding: 16px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .address-icon {
    width: 45px;
    height: 45px;
  }

  .address-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .method-card {
    padding: 16px;
  }

  .method-icon {
    width: 50px;
    height: 50px;
  }

  .method-icon .material-symbols-rounded {
    font-size: 24px;
  }

  .info-category {
    padding: 16px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .cta-card {
    padding: 24px 20px;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .cta-icon .material-symbols-rounded {
    font-size: 30px;
  }

  .cta-text h4 {
    font-size: 20px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 14px;
    min-width: 160px;
  }
}

/* =================================================================================== */
/* 20. FILING PAGE STYLES */
/* =================================================================================== */

.filing-section {
  background: #f8f9fa;
  padding: 0;
}

/* Filing Header */
.filing-header {
  margin-bottom: 32px;
}

.filing-stats {
  display: flex;
  align-items: center;
}

/* View Toggle Tabs */
.view-toggle-tabs {
  display: flex;
  background: #e9ecef;
  border-radius: 99px;
  padding: 4px;
  gap: 4px;
}

.view-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 99px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(15, 117, 188, 0.3);
}

.view-tab:hover:not(.active) {
  background: rgba(15, 117, 188, 0.1);
  color: var(--primary);
}

.view-tab .material-symbols-rounded {
  font-size: 18px;
}

/* Filters */
.filing-filters {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 0;
}

.filter-select {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 117, 188, 0.25);
}

.search-input-wrapper {
  position: relative;
}

.search-input {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 117, 188, 0.25);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 20px;
  pointer-events: none;
}

/* Table View */
.filing-table-container {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.filing-table {
  margin-bottom: 0;
}

.filing-table thead th {
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border: none;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.filing-table thead th.sortable:hover {
  background: #0d6aa8;
}

.sort-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.filing-table thead th.sort-asc .sort-icon {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.filing-table thead th.sort-desc .sort-icon {
  transform: translateY(-50%) rotate(0deg);
  opacity: 1;
}

.filing-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 14px;
}

.filing-table tbody tr:hover {
  background: #f8f9fa;
}

.filing-table tbody tr:last-child td {
  border-bottom: none;
}

/* File Type Icons */
.file-type-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.file-type-icon.pdf,
.file-type-icon.word,
.file-type-icon.zip {
  background: #e5e5e5;
  color: var(--grey);
}

.file-type-icon .material-symbols-rounded {
  font-size: 18px;
}

.file-info {
  display: flex;
  align-items: center;
}

.file-details {
  flex: 1;
}

.file-name {
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 2px;
  line-height: 1.3;
}

.file-description {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.action-btn.download {
  background: var(--primary);
  color: var(--white);
}

.action-btn.download:hover {
  background: var(--black-tebp);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.3);
}

.action-btn.view {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.action-btn.view:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.3);
}

.action-btn .material-symbols-rounded {
  font-size: 18px;
}

/* Download Animation States */
.action-btn.downloading {
  background-color: var(--grey);
  cursor: not-allowed;
  transform: none;
}

.action-btn.success {
  background-color: #28a745;
}

.action-btn.error {
  background-color: #dc3545;
}

/* Hide original icon when downloading or success */
.action-btn.downloading .btn-icon,
.action-btn.success .btn-icon {
  opacity: 0 !important;
}

/* Button Text Styles */
.action-btn .btn-text {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.action-btn .btn-icon {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Loading Spinner */
.action-btn .download-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.action-btn.downloading .download-spinner {
  opacity: 1;
}

.action-btn .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Icon */
.action-btn .download-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  color: white;
  font-size: 24px;
}

.action-btn.success .download-success {
  opacity: 1;
  animation: successPop 0.5s ease-out;
}

.action-btn.success .download-spinner {
  opacity: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes successPop {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Grid View */
.filing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.filing-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.filing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.filing-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.filing-card .file-type-icon {
  width: 48px;
  height: 48px;
  margin-right: 0;
}

.filing-card .file-type-icon .material-symbols-rounded {
  font-size: 24px;
}

.filing-card-info {
  flex: 1;
  min-width: 0;
}

.filing-card .file-name {
  font-size: 16px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.filing-card .file-description {
  font-size: 13px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.filing-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  color: #666;
}

.filing-card-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.filing-card .action-btn {
  flex: 1;
  width: auto;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}

/* Pagination */
.filing-pagination {
  margin-top: 48px;
}

.filing-pagination .pagination {
  margin-bottom: 0;
  gap: 8px;
}

.filing-pagination .page-link {
  border: 1px solid var(--lightgrey);
  color: var(--black-tebp);
  padding: 12px 18px;
  margin: 0;
  /* border-radius: 12px; */
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 48px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filing-pagination .page-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 117, 188, 0.3);
}

.filing-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(15, 117, 188, 0.3);
}

.filing-pagination .page-item.disabled .page-link {
  color: var(--grey);
  background: var(--lightgrey);
  border-color: var(--lightgrey);
  cursor: not-allowed;
  box-shadow: none;
}

.filing-pagination .page-item.disabled .page-link:hover {
  transform: none;
  box-shadow: none;
}

/* Previous/Next Button Styles */
.filing-pagination .page-link .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.empty-state .material-symbols-rounded {
  font-size: 64px;
  color: #ccc;
  margin-bottom: 16px;
}

/* Badge Styles */
.badge {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-primary {
  background-color: #eaf6ff !important;
  color: var(--primary) !important;
  border: 1px solid #bad3e4 !important;
}

.bg-danger {
  background-color: #ffefef !important;
  color: #cc4343 !important;
  border: 1px solid #f7c0c0 !important;
}

.bg-warning {
  background-color: #fff6d8 !important;
  color: #c8980d !important;
  border: 1px solid #f1e0b5 !important;
}



/* Responsive Design */
@media (max-width: 1199.98px) {
  .filing-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .filing-card {
    padding: 20px;
  }
}

@media (max-width: 991.98px) {
  .filing-section {
    padding: 32px 0;
  }

  .filing-header {
    gap: 16px;
    align-items: center !important;
  }

  .view-toggle-tabs {
    align-self: flex-end;
  }

  .filing-filters {
    padding: 20px;
  }

  .filing-table thead th {
    padding: 12px 16px;
    font-size: 14px;
  }

  .filing-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
  }

  .filing-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 767.98px) {

  .filing-section {
    padding: 24px 0;
  }

  .filing-header {
    margin-bottom: 24px;
  }

  .view-toggle-tabs {
    width: 100%;
    align-self: stretch;
  }

  .view-tab {
    flex: 1;
    justify-content: center;
  }

  .tab-text {
    display: none;
  }

  .filing-filters {
    padding: 16px;
    border-radius: 24px;
  }

  .filing-table-container {
    border-radius: 24px;
  }

  .filing-table thead th {
    padding: 10px 12px;
    font-size: 13px;
  }

  .filing-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .file-type-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .file-type-icon .material-symbols-rounded {
    font-size: 16px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .action-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .action-btn .material-symbols-rounded {
    font-size: 16px;
  }

  .action-btn .btn-text {
    display: none;
  }

  .filing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .filing-card {
    padding: 16px;
    border-radius: 12px;
  }

  .filing-card .file-type-icon {
    width: 40px;
    height: 40px;
  }

  .filing-card .file-type-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .filing-pagination {
    margin-top: 32px;
  }

  .filing-pagination .page-link {
    padding: 10px 14px;
    min-width: 44px;
    font-size: 14px;
  }

  .filing-pagination .page-link .material-symbols-rounded {
    font-size: 16px;
  }

  .material-symbols-rounded {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .filing-filters .row {
    gap: 16px;
  }

  .filing-filters .col-md-4 {
    width: 100%;
  }

  .filing-table thead th {
    padding: 8px 10px;
    font-size: 12px;
  }

  .filing-table tbody td {
    padding: 8px 10px;
    font-size: 11px;
  }

  .file-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .file-type-icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  .filing-card {
    padding: 12px;
  }

  .filing-card-header {
    gap: 12px;
  }

  .filing-card .file-type-icon {
    width: 36px;
    height: 36px;
  }

  .filing-card .action-btn {
    height: 36px;
    font-size: 13px;
    padding: 8px 12px;
  }

  .filing-card .action-btn .btn-text {
    font-size: 12px;
  }

  .filing-pagination {
    margin-top: 24px;
  }

  .filing-pagination .pagination {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filing-pagination .page-link {
    padding: 8px 12px;
    min-width: 40px;
    font-size: 13px;
  }

  .filing-pagination .page-link .material-symbols-rounded {
    font-size: 14px;
  }
}


/* =================================================================================== */
/* 23. EMAIL ALERT PAGE STYLES */
/* =================================================================================== */

/* Email Registration Section */
.email-registration-section {
  margin-bottom: 80px;
}

.email-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 24px rgba(15, 117, 188, 0.2);
}

.form-icon .material-symbols-rounded {
  color: white;
  font-size: 40px;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 12px;
}


/* Input Groups */
.input-group-custom {
  margin-bottom: 24px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
}

.input-label .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
}

.input-wrapper {
  position: relative;
}

.form-control-custom {
  width: 100%;
  padding: 16px 50px 16px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 117, 188, 0.25);
  background: white;
  outline: none;
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  font-size: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.form-control-custom:focus+.input-icon {
  color: var(--primary);
}

/* Newsletter Categories */
.newsletter-categories {
  margin-bottom: 32px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 20px;
}

.category-title .material-symbols-rounded {
  font-size: 22px;
  color: var(--primary);
}

.category-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fafafa;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.category-option:hover {
  background: white;
  border-color: rgba(15, 117, 188, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-option input[type="checkbox"] {
  display: none;
}

.category-option .checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.category-option input[type="checkbox"]:checked+.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.category-option input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.option-content .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.option-content strong {
  font-size: 16px;
  color: var(--black-tebp);
  display: block;
  margin-bottom: 4px;
}

.option-content small {
  font-size: 13px;
  color: var(--grey);
}

/* Privacy Consent */
.privacy-consent {
  margin-bottom: 32px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.consent-checkbox:hover {
  background: white;
  border-color: rgba(15, 117, 188, 0.3);
}

.consent-checkbox input[type="checkbox"] {
  display: none;
}

.consent-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked+.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.consent-checkbox input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.consent-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.consent-text .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-text div {
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-text);
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #3d91e0;
  text-decoration: none;
}

/* Submit Button */
.form-actions {
  text-align: center;
  margin-bottom: 32px;
}

.form-actions.unsub {
  margin-bottom: 0px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
}

.bdt-ep-button-text.btn-text.email-btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn .btn-icon {
  font-size: 20px;
  transition: all 0.3s ease;
}

.submit-btn .btn-text {
  transition: all 0.3s ease;
}

.submit-btn .btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-icon,
.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
}

.submit-btn .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Form Footer */
.form-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
}

.footer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
}

.footer-note .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-note p {
  font-size: 14px;
  color: var(--p-text);
  line-height: 1.6;
  text-align: start;
}

.unsubscribe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.unsubscribe-link:hover {
  color: #3d91e0;
  text-decoration: none;
}

.unsubscribe-link .material-symbols-rounded {
  font-size: 16px;
}

/* Benefits Section */
.email-benefits-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #3d91e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 24px rgba(15, 117, 188, 0.2);
}

.benefit-icon .material-symbols-rounded {
  color: white;
  font-size: 36px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 16px;
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-text);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .email-benefits-section {
    padding: 64px 0;
  }

  .intro-card,
  .email-form-card {
    padding: 32px;
  }

  .form-icon {
    width: 70px;
    height: 70px;
  }

  .form-icon .material-symbols-rounded {
    font-size: 32px;
  }

  .benefit-card {
    padding: 28px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon .material-symbols-rounded {
    font-size: 32px;
  }

  .email-registration-section {
    margin-bottom: 64px;
  }
}

@media (max-width: 767.98px) {
  .email-benefits-section {
    padding: 48px 0;
  }

  .intro-card,
  .email-form-card {
    padding: 24px;
  }

  .card-header-custom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .icon-wrapper {
    align-self: center;
  }

  .form-header {
    margin-bottom: 24px;
  }

  .form-icon {
    width: 60px;
    height: 60px;
  }

  .form-icon .material-symbols-rounded {
    font-size: 28px;
  }

  .form-title {
    font-size: 20px;
  }

  .category-option {
    padding: 16px;
  }

  .consent-checkbox {
    padding: 16px;
  }

  .submit-btn {
    padding: 14px 28px;
    font-size: 16px;
  }

  .benefit-card {
    padding: 24px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .benefit-icon .material-symbols-rounded {
    font-size: 28px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .email-registration-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {

  .form-control-custom {
    padding: 14px 45px 14px 14px;
    font-size: 14px;
  }

  .category-option {
    padding: 14px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .option-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .consent-checkbox {
    padding: 14px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .consent-text {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 180px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .benefit-icon .material-symbols-rounded {
    font-size: 24px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .email-registration-section {
    margin-bottom: 40px;
  }
}

/* =
================================================================================== */
/* 24. PRIVACY POLICY PAGE STYLES */
/* =================================================================================== */

/* Privacy Policy Introduction */
.privacy-intro-section {
  margin-bottom: 80px;
}


.privacy-accordion {
  margin-top: 32px;
}

.privacy-accordion .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 24px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.privacy-accordion .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.privacy-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.privacy-accordion .accordion-header {
  margin-bottom: 0;
}

.privacy-accordion .accordion-button {
  background: #fafafa;
  border: none;
  padding: 24px 32px;
  font-weight: 600;
  color: var(--black-tebp);
  border-radius: 16px !important;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-accordion .accordion-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.privacy-accordion .accordion-button:hover::before,
.privacy-accordion .accordion-button:not(.collapsed)::before {
  transform: scaleY(1);
}

.privacy-accordion .accordion-button:hover {
  background: #ffffff;
  color: var(--primary);
}

.privacy-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(15, 117, 188, 0.15);
}

.privacy-accordion .accordion-button:not(.collapsed)::before {
  background: rgba(255, 255, 255, 0.3);
}

.privacy-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.privacy-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.privacy-accordion .accordion-button:not(.collapsed) .principle-number {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.privacy-accordion .accordion-body {
  padding: 32px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-accordion .accordion-collapse {
  border-radius: 0 0 16px 16px;
}

/* Privacy Subsections */
.privacy-subsection {
  margin-bottom: 32px;
}

.privacy-subsection:last-child {
  margin-bottom: 0;
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.subsection-title .material-symbols-rounded {
  font-size: 22px;
}

/* Data Categories */
.data-categories {
  margin-top: 20px;
}

.category-item {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  margin-bottom: 16px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--black-tebp);
}

.category-header .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
}

.category-header .material-symbols-rounded.custom-icon-category {
  font-size: 20px;
  color: var(--white);
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--p-text);
}

.data-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

.data-list li:last-child {
  margin-bottom: 0;
}

/* Purposes Grid */
.purposes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.purpose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.purpose-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.purpose-item .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.purpose-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.purpose-item p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.5;
}

/* Retention Criteria */
.retention-criteria {
  margin-top: 24px;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.criteria-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--p-text);
}

.criteria-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

.criteria-list li:last-child {
  margin-bottom: 0;
}

/* Security Measures */
.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.measure-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.measure-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.measure-item .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.measure-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.measure-item p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.5;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.right-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.right-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.right-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.right-icon .material-symbols-rounded {
  color: white;
  font-size: 24px;
}

.right-content {
  flex: 1;
}

.right-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 8px;
  line-height: 1.3;
}

.right-content p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.6;
}

/* Disclosure Categories */
.disclosure-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.disclosure-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.disclosure-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.disclosure-item .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclosure-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.disclosure-item p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.5;
}

/* Contact Info Card */
.contact-info-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9ecef;
  margin-top: 24px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}

.contact-header .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
}

.contact-header h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-tebp);
  margin: 0;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-detail .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.5;
}

/* Update Process */
.update-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.process-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.process-item .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.process-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-tebp);
  margin-bottom: 4px;
}

.process-item p {
  font-size: 14px;
  color: var(--p-text);
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 991.98px) {
  .privacy-accordion .accordion-button {
    padding: 20px 24px;
  }

  .accordion-principle-header {
    gap: 16px;
  }

  .accordion-principle-header .principle-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .principle-title-text {
    font-size: 16px;
  }

  .privacy-accordion .accordion-body {
    padding: 24px;
  }

  .security-measures {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .measure-item .material-symbols-rounded {
    align-self: center;
  }

  .right-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .right-icon {
    align-self: center;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .update-process {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-intro-section {
    margin-bottom: 64px;
  }
}

@media (max-width: 767.98px) {
  .privacy-accordion .accordion-item {
    border-radius: 12px !important;
    margin-bottom: 12px;
  }

  .privacy-accordion .accordion-button {
    padding: 16px 20px;
    border-radius: 12px !important;
  }

  .accordion-principle-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .accordion-principle-header .principle-number {
    width: 45px;
    height: 45px;
    font-size: 15px;
    align-self: center;
  }

  .principle-title-text {
    font-size: 15px;
    text-align: center;
  }

  .privacy-accordion .accordion-body {
    padding: 20px;
  }

  .privacy-accordion .accordion-collapse {
    border-radius: 0 0 12px 12px;
  }

  .subsection-title {
    font-size: 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .category-item {
    padding: 20px;
  }

  .purpose-item,
  .measure-item,
  .right-item,
  .disclosure-item,
  .process-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .purpose-item .material-symbols-rounded,
  .measure-item .material-symbols-rounded,
  .disclosure-item .material-symbols-rounded,
  .process-item .material-symbols-rounded {
    align-self: center;
  }

  .purpose-group-custom,
  .measure-group-custom,
  .contact-group-custom {
    align-self: center;
  }

  .intro-group-custom {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .group-center {
    text-align: center;
  }

  .right-icon {
    width: 45px;
    height: 45px;
  }

  .right-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-detail {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-detail .material-symbols-rounded {
    align-self: center;
  }

  .privacy-intro-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .privacy-accordion .accordion-button {
    padding: 14px 16px;
  }

  .accordion-principle-header .principle-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .principle-title-text {
    font-size: 14px;
    line-height: 1.3;
  }

  .privacy-accordion .accordion-body {
    padding: 16px;
  }

  .subsection-title {
    font-size: 15px;
  }

  .category-item {
    padding: 16px;
  }

  .purpose-item,
  .measure-item,
  .right-item,
  .disclosure-item,
  .process-item {
    padding: 14px;
  }

  .right-icon {
    width: 40px;
    height: 40px;
  }

  .right-icon .material-symbols-rounded {
    font-size: 20px;
  }

  .contact-info-card {
    padding: 16px;
  }
}

/* Enhanced
 Accordion Animation */
.privacy-accordion .accordion-collapse {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-accordion .accordion-collapse.collapsing {
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-accordion .accordion-collapse.show {
  animation: accordionSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes accordionSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordionSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

/* Smooth scroll behavior */
.privacy-accordion .accordion-item {
  scroll-margin-top: 100px;
}

/* Enhanced button transitions */
.privacy-accordion .accordion-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-accordion .accordion-button:not(.collapsed) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 117, 188, 0.2);
}