/* --- DESIGN SYSTEM (CSS VARIABLES) --- */
:root {
  --remastered-guardian-primary: #0059a7;
  /* Tünd göy - Source 1 */
  --remastered-guardian-secondary: #3498ef;
  /* Açıq göy - Source 4 */
  --remastered-guardian-bg-gray: #f8fafc;
  --remastered-guardian-text-main: #1e293b;
  --remastered-guardian-white: #ffffff;
  --remastered-guardian-modal-overlay: rgba(0, 0, 0, 0.4);
  --remastered-guardian-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --remastered-guardian-card-shadow: 0 10px 30px rgba(0, 86, 150, 0.1);
}

/* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mark Pro", sans-serif;
}

.remastered-guardian-main-wrapper {
  background: var(--remastered-guardian-white);
  max-width: 1100px;
  width: 100%;
  padding: 5rem;
  border-radius: 24px;
  box-shadow: var(--remastered-guardian-card-shadow);
}

.about-us-nav {
  flex-wrap: wrap;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
/* --- HEADER TEXT --- */
.remastered-guardian-intro-text {
  margin-bottom: 40px;
  color: var(--remastered-guardian-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.remastered-guardian-intro-text p {
  margin-bottom: 12px;
}

/* --- GRID SYSTEM --- */
.remastered-guardian-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  justify-items: center;
  justify-content: center;
}

/* --- MEMBER CARD STYLE --- */
.remastered-guardian-card {
  background: linear-gradient(135deg, #3498ef, #0059a7);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--remastered-guardian-transition);
  display: flex;
  flex-direction: column;
  width: 280px;
}

.remastered-guardian-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 86, 150, 0.25);
}

.remastered-guardian-card-img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.remastered-guardian-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remastered-guardian-card-body {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 12px;
  padding-bottom: 8px;
  color: var(--remastered-guardian-white);
}

.remastered-guardian-card-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.remastered-guardian-card-title {
  font-size: 13px;
  line-height: 1.4;
}

/* --- HIDDEN SECTION (READ MORE) --- */
.remastered-guardian-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease-out;
  zoom: 1;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}

.remastered-guardian-collapsible-content.remastered-guardian-show {
  max-height: 2000px;
  padding-top: 30px;
}

/* Static elements inside collapsible content */
.remastered-guardian-collapsible-content h4 {
  color: var(--remastered-guardian-primary);
  margin-bottom: 20px;
  font-size: 16px;
}

.remastered-guardian-collapsible-content ul {
  padding-left: 0;
  list-style: none;
}

.remastered-guardian-collapsible-content li {
  color: var(--remastered-guardian-primary);
  font-size: 14px;
  line-height: 1.5;
  /* padding-left: 20px; */
  font-weight: 500;
  position: relative;
}

.remastered-guardian-list-item::before {
  /* content: "•"; */
  position: absolute;
  left: 0;
  color: var(--remastered-guardian-secondary);
}

/* --- BUTTONS --- */
.remastered-guardian-button-area {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.remastered-guardian-btn-action {
  background: linear-gradient(135deg, #3498ef, #0059a7);
  color: var(--remastered-guardian-white);
  border: none;
  padding: 14px 45px;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--remastered-guardian-transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 89, 167, 0.3);
}

.remastered-guardian-btn-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 89, 167, 0.4);
}

.remastered-guardian-btn-action.remastered-guardian-active {
  background: #ffffff;
  color: #0059a7;
  border: 1px solid #0059a7;
  box-shadow: none;
}

.remastered-guardian-btn-action.remastered-guardian-active:hover {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 89, 167, 0.1);
}

/* --- MODAL SYSTEM --- */
.remastered-guardian-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--remastered-guardian-modal-overlay);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  padding: 20px;
}

.remastered-guardian-modal-overlay.remastered-guardian-open {
  display: flex;
}

.remastered-guardian-modal-container {
  background: var(--remastered-guardian-white);
  width: 100%;
  max-width: 950px;
  border-radius: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  animation: remasteredFadeIn 0.3s ease;
}

@keyframes remasteredFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.remastered-guardian-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 20px;
  z-index: 10;
  color: var(--remastered-guardian-primary);
}

/* Mobil butonu desktopda gizlədilir */
.remastered-guardian-modal-close-mobile {
  display: none;
}

.remastered-guardian-modal-sidebar {
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.remastered-guardian-modal-img {
  width: 100%;
  margin-bottom: 25px;
  object-fit: cover;
}

.remastered-guardian-modal-info-title {
  color: var(--remastered-guardian-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.remastered-guardian-modal-main-content {
  padding: 50px;
  overflow-y: auto;
  max-height: 85vh;
  border-left: 1px solid #f1f5f9;
}

.remastered-guardian-bio-paragraph {
  color: var(--remastered-guardian-primary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 850px) {
  .remastered-guardian-members-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .remastered-guard {
    padding-left: 30px;
    padding-right: 30px;
  }
  .remastered-guardian-main-wrapper {
    padding: 25px 20px;
  }

  .remastered-guardian-modal-container {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .remastered-guardian-modal-main-content {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding: 30px;
  }

  .remastered-guardian-modal-sidebar {
    padding: 30px;
  }

  /* Desktop butonu mobildə gizlədilir */
  .remastered-guardian-modal-close {
    display: none;
  }

  /* Mobil butonu mobildə aktiv edilir */
  .remastered-guardian-modal-close-mobile {
    display: flex;
    position: absolute;
    top: 3px;
    right: 3px;
    background: #dfdede;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
    color: #0059a7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 22221100;
  }

  /* Container-ə relatice veririk ki mobil buton ona görə hizalansın */
  .remastered-guardian-modal-container {
    position: relative;
    margin-top: 20px;
  }
}
