/*------------- About Us -----------*/
:root {
  --primary-color-m: #862633;
  --primary-light-m: #a73344;
  --primary-dark-m: #6b1e28;
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color-m) 0%,
    var(--primary-dark-m) 100%
  );
  padding: 60px 0 40px;
  margin-bottom: 50px;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.breadcrumb {
  background: transparent;
}

.about-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark-m);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-color-m);
}

.mission-card,
.value-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.mission-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(134, 38, 51, 0.15);
}

.mission-icon,
.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-light-m) 0%,
    var(--primary-light-m) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 2rem;
}

.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color-m) 0%,
    var(--primary-dark-m) 100%
  );
  padding: 60px 0;
  margin: 60px 0;
}

.stat-card {
  text-align: center;
  color: white;
  padding: 30px 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(134, 38, 51, 0.2);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid #fff;
  object-fit: cover;
}

.btn-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color-m) 0%,
    var(--primary-dark-m) 100%
  );
  color: white;
  padding: 14px 35px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-custom:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark-m) 0%,
    var(--primary-color-m) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(134, 38, 51, 0.4);
  color: white;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-color-m);
  font-weight: 700;
  font-size: 1.3rem;
}

/* ============== MAINTENANCE ==================== */

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color-m: #3e1f26;
  --primary-dark-m: #6b1e28;
  --primary-light-m: #a94452;
  --text-dark-m: #2c3e50;
  --text-light-m: #ecf0f1;
  --background-: #f8f9fa;
  --white: #ffffff;
}

.body-main {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-color-m) 0%,
    var(--primary-dark-m) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--text-dark-m);
  overflow-x: hidden;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.circle:nth-child(4) {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-50px) scale(1.1);
  }
}

/* ==================== MAIN CONTAINER ==================== */
.maintenance-container {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== ICON ==================== */
.maintenance-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color-m),
    var(--primary-dark-m)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 10px 30px rgba(134, 38, 51, 0.3);
}

.maintenance-icon i {
  font-size: 3.5rem;
  color: var(--white);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(134, 38, 51, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(134, 38, 51, 0.5);
  }
}

/* ==================== TEXT CONTENT ==================== */
.maintenance-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-m);
  margin-bottom: 20px;
  line-height: 1.2;
}

.maintenance-message {
  font-size: 1.1rem;
  color: var(--text-dark-m);
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ==================== TIME ESTIMATE ==================== */
.time-estimate {
  background: linear-gradient(
    135deg,
    rgba(134, 38, 51, 0.1),
    rgba(134, 38, 51, 0.05)
  );
  border-left: 4px solid var(--primary-color-m);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
}

.time-estimate-label {
  font-size: 0.9rem;
  color: var(--text-dark-m);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-estimate-value {
  font-size: 1.3rem;
  color: var(--primary-color-m);
  font-weight: 700;
}

/* ==================== LOADER ==================== */
.loader-container {
  margin: 40px 0;
}

.loader {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 6px solid rgba(134, 38, 51, 0.1);
  border-top-color: var(--primary-color-m);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-dark-m);
  opacity: 0.7;
}

/* ==================== CONTACT INFO ==================== */
.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(134, 38, 51, 0.1);
}

.contact-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark-m);
  margin-bottom: 15px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--background-);
  color: var(--primary-color-m);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--primary-color-m);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(134, 38, 51, 0.3);
}

.contact-link i {
  font-size: 1.1rem;
}

/* ==================== FOOTER ==================== */
.maintenance-footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
  z-index: 1;
  opacity: 0.9;
}

.maintenance-footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.maintenance-footer a:hover {
  border-bottom-color: var(--white);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .maintenance-container {
    padding: 40px 25px;
  }

  .maintenance-title {
    font-size: 2rem;
  }

  .maintenance-message {
    font-size: 1rem;
  }

  .maintenance-icon {
    width: 100px;
    height: 100px;
  }

  .maintenance-icon i {
    font-size: 3rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
  }

  .circle:nth-child(1),
  .circle:nth-child(4) {
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .maintenance-container {
    padding: 30px 20px;
  }

  .maintenance-title {
    font-size: 1.5rem;
  }

  .maintenance-icon {
    width: 80px;
    height: 80px;
  }

  .maintenance-icon i {
    font-size: 2.5rem;
  }
}

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(134, 38, 51, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color-m),
    var(--primary-light-m)
  );
  border-radius: 10px;
  animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 0%;
  }
}
/* =============== MAINTENANCE ===================== */
