/*---------------------------------*\
  #ABOUT PAGE SPECIFIC STYLES
\*---------------------------------*/

/* Page Hero for About Page */
#page-hero {
    background-color: var(--primary-light);
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  #page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 111, 238, 0.12), transparent 70%);
  }
  
  .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .page-hero-content h1 {
    margin-bottom: var(--space-sm);
    color: var(--dark);
    font-size: 3rem;
  }
  
  .page-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
  }
  
  /* Our Story Section */
  #our-story {
    padding: var(--space-xxl) 0;
  }
  
  .story-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xxl);
  }
  
  .story-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  
  .story-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 90%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 70%);
    filter: blur(10px);
    z-index: -1;
  }
  
  .story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .story-image:hover img {
    transform: scale(1.05);
  }
  
  .story-content {
    flex: 1;
  }
  
  .section-header.left-aligned {
    text-align: left;
  }
  
  .section-header.left-aligned h2::after {
    left: 0;
    transform: none;
  }
  
  .story-content p {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
  }
  
  /* Mission & Values Section */
  #mission-values {
    padding: var(--space-xxl) 0;
    background-color: var(--light-bg);
  }
  
  .mission-content {
    margin-top: var(--space-xl);
  }
  
  .mission-statement {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    padding: var(--space-xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
  }
  
  .mission-statement svg {
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mission-statement h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-size: 1.8rem;
  }
  
  .mission-statement p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-dark);
    max-width: 85%;
    margin: 0 auto;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .value-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
  }
  
  .value-icon {
    margin-bottom: var(--space-md);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
  }
  
  .value-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--dark);
    font-size: 1.2rem;
  }
  
  .value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Team Section */
  #our-team {
    padding: var(--space-xxl) 0;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
  
  .team-member {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
  }
  
  .team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
  }
  
  .member-image {
    height: 250px;
    overflow: hidden;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.08);
  }
  
  .member-info {
    padding: var(--space-md);
    text-align: center;
  }
  
  .member-info h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.2rem;
    color: var(--dark);
  }
  
  .member-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }
  
  .member-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }
  
  .member-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
  }
  
  .member-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--gray-dark);
    transition: all var(--transition-fast);
  }
  
  .member-social .social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  /* Milestones Timeline */
  #milestones {
    padding: var(--space-xxl) 0;
    background-color: var(--light-bg);
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    width: 50%;
    padding: var(--space-md) 0;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--space-xl);
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--space-xl);
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-item:nth-child(odd)::before {
    right: -14px;
  }
  
  .timeline-item:nth-child(even)::before {
    left: -14px;
  }
  
  .timeline-content {
    position: relative;
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .timeline-date {
    display: inline-block;
    padding: 3px 12px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
  }
  
  .timeline-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--dark);
    font-size: 1.2rem;
  }
  
  .timeline-content p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Workspace Gallery */
  #workspace {
    padding: var(--space-xxl) 0;
  }
  
  .workspace-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }
  
  .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 300px;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* About CTA Section */
  #about-cta {
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
  }
  
  .cta-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 2.5rem;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
  }
  
  .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
  }
  
  .cta-buttons .outline-btn {
    border-color: var(--white);
    color: var(--white);
  }
  
  .cta-buttons .outline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /*---------------------------------*\
    #RESPONSIVE STYLES
  \*---------------------------------*/
  
  /* Large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .story-wrapper {
      flex-direction: column;
    }
    
    .story-image {
      width: 100%;
      margin-bottom: var(--space-xl);
    }
    
    .timeline::before {
      left: 30px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 60px !important;
      padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) {
      left: 0;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
    
    .timeline-item::before {
      left: 19px !important;
      right: auto !important;
    }
  }
  
  /* Small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    .page-hero-content h1 {
      font-size: 2.2rem;
    }
    
    .values-grid {
      grid-template-columns: 1fr;
    }
    
    .mission-statement {
      padding: var(--space-lg);
    }
    
    .mission-statement p {
      font-size: 1.1rem;
      max-width: 100%;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
    
    .workspace-gallery {
      grid-template-columns: 1fr;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .cta-buttons .btn {
      width: 100%;
    }
  }
  
  /* Extra small devices (phones, less than 576px) */
  @media (max-width: 575.98px) {
    .page-hero-content h1 {
      font-size: 1.8rem;
    }
    
    .page-hero-content p {
      font-size: 1rem;
    }
    
    .section-header h2 {
      font-size: 1.6rem;
    }
    
    .mission-statement h3 {
      font-size: 1.5rem;
    }
    
    .mission-statement p {
      font-size: 1rem;
    }
    
    .story-content p {
      font-size: 0.95rem;
    }
    
    .timeline-content {
      padding: var(--space-md);
    }
    
    .cta-content h2 {
      font-size: 1.8rem;
    }
    
    .cta-content p {
      font-size: 1rem;
    }
  }