/* =======================================
   ABOUT US SECTION
   ======================================= */

/* Base Layout */
/* ========================================
   ABOUT US SECTION - DESIGN MODERNE
======================================== */

/* =======================================
   ABOUT US SECTION - MINIMALIST DESIGN
   ======================================= */

#aboutus {
  margin-left: var(--sidebar-width);
  padding: var(--spacing-xl) var(--spacing-lg);
  min-height: 100vh;
  font-family: var(--main-font);
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - var(--sidebar-width));
}

/* Container */
.aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section - Simple and Clean */
.aboutus-hero {
  padding: 0;
  margin: 0 0 40px 0;
  text-align: center;
}

.aboutus-hero-content {
  padding: 0;
}

.aboutus-hero-title {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.aboutus-hero-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(39, 76, 119, 0.7);
  line-height: 1.5;
}

/* Content Container */
.aboutus-content {
  width: 100%;
}

/* Cards - Modern Glassmorphic Style */
.aboutus-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(163, 206, 241, 0.2);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 8px rgba(39, 76, 119, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient accent bar */
.aboutus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Gradient overlay effect */
.aboutus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96, 150, 186, 0.03) 0%, rgba(163, 206, 241, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.aboutus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(39, 76, 119, 0.18);
  border-color: var(--secondary-color);
}

.aboutus-card:hover::before {
  transform: scaleX(1);
}

.aboutus-card:hover::after {
  opacity: 1;
}

/* Card Icon - Modern Gradient Style */
.aboutus-card-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(96, 150, 186, 0.1) 0%, rgba(163, 206, 241, 0.15) 100%);
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutus-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.aboutus-card:hover .aboutus-card-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scale(1.05);
}

.aboutus-card:hover .aboutus-card-icon svg {
  color: white;
  transform: scale(1.1);
}

/* Card Title */
.aboutus-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.aboutus-card:hover .aboutus-card-title {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Text */
.aboutus-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(39, 76, 119, 0.8);
  margin: 0;
}

/* Highlighted Card - Enhanced */
.aboutus-card-highlight {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 8px 16px rgba(96, 150, 186, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(163, 206, 241, 0.05) 100%);
}

.aboutus-card-highlight:hover {
  box-shadow: 0 16px 40px rgba(96, 150, 186, 0.25);
}

/* Grid Layouts */
.aboutus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.aboutus-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* List Styles */
.aboutus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aboutus-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(39, 76, 119, 0.8);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.aboutus-list li:hover {
  color: var(--primary-color);
  padding-left: 32px;
}

.aboutus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 150, 186, 0.1) 0%, rgba(163, 206, 241, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.aboutus-list li:hover::before {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  transform: scale(1.1);
}

.aboutus-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #aboutus {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #aboutus {
    padding: 8px;
    margin-left: 0;
  }

  .aboutus-hero {
    margin-bottom: 32px;
  }

  .aboutus-hero-title {
    font-size: 24px;
  }

  .aboutus-hero-subtitle {
    font-size: 14px;
  }

  .aboutus-card {
    padding: 20px;
    margin-bottom: 16px;
  }

  .aboutus-card-icon {
    width: 36px;
    height: 36px;
  }

  .aboutus-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .aboutus-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .aboutus-card-text {
    font-size: 14px;
  }

  .aboutus-list li {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .aboutus-list li::before {
    font-size: 14px;
  }

  .aboutus-grid,
  .aboutus-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .aboutus-card {
    padding: 16px;
    border-radius: 10px;
  }

  .aboutus-hero-title {
    font-size: 22px;
  }

  .aboutus-card-title {
    font-size: 16px;
  }

  .aboutus-card-text {
    font-size: 13px;
  }

  .aboutus-list li {
    font-size: 13px;
    padding-left: 20px;
  }
}

