.about-3 {
  background-color: var(--surface-color);

  .about-content {
    h3 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .lead {
      font-size: 1.25rem;
      font-weight: 500;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      margin-bottom: 1.5rem;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
  }

  .features-list {
    margin-top: 2rem;

    .feature-item {
      margin-bottom: 2rem;

      .feature-icon {
        width: 60px;
        height: 60px;
        background-color: var(--contrast-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;

        i {
          font-size: 1.5rem;
          color: var(--contrast-color);
        }
      }

      .feature-content {
        h5 {
          font-size: 1.3rem;
          margin-bottom: 0.5rem;
          font-weight: 600;
        }

        p {
          margin-bottom: 0;
          color: color-mix(in srgb, var(--default-color), transparent 25%);
        }
      }
    }
  }

  .about-images {
    position: relative;
    height: 500px;

    .main-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      height: 70%;
      z-index: 2;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }
    }

    .secondary-image {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60%;
      height: 60%;
      z-index: 3;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border: 5px solid var(--surface-color);
      }
    }

    @media (max-width: 768px) {
      height: 400px;

      .main-image {
        width: 100%;
        height: 60%;
      }

      .secondary-image {
        width: 70%;
        height: 50%;
      }
    }
  }

  .chef-quote {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    .chef-avatar {
      img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 3px solid var(--accent-color);
      }
    }

    .quote-text {
      font-size: 1.3rem;
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 1rem;
      color: var(--heading-color);
      font-weight: 400;
    }

    .quote-author {
      font-style: normal;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    @media (max-width: 768px) {
      padding: 2rem;

      .chef-avatar {
        margin-bottom: 1rem;
      }

      .quote-text {
        font-size: 1.1rem;
      }
    }
  }

  .highlight-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .highlight-icon {
      width: 70px;
      height: 70px;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;

      i {
        font-size: 1.8rem;
        color: var(--accent-color);
      }
    }

    h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    p {
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1.7;
      margin-bottom: 0;
    }
  }

  @media (max-width: 992px) {
    .about-content {
      margin-bottom: 3rem;

      h3 {
        font-size: 2rem;
      }
    }
  }
}


/* featured apparatus */
.gallery .featured-gallery {
  margin-bottom: 2rem;
}
.gallery .featured-gallery .main-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.gallery .featured-gallery .main-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.gallery .featured-gallery .main-gallery-item:hover .gallery-lightbox {
  opacity: 1;
}
.gallery .featured-gallery .main-gallery-item:hover img {
  transform: scale(1.02);
}
.gallery .featured-gallery .main-gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}
.gallery .featured-gallery .main-gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .gallery .featured-gallery .main-gallery-item img {
    height: 300px;
  }
}
.gallery .featured-gallery .main-gallery-item .gallery-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.gallery .featured-gallery .main-gallery-item .gallery-lightbox .lightbox-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}
.gallery .featured-gallery .main-gallery-item .gallery-lightbox:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}
.gallery .featured-gallery .main-gallery-item .gallery-lightbox:hover .lightbox-icon i {
  color: var(--contrast-color);
}
.gallery .featured-gallery .main-gallery-item .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--contrast-color);
  padding: 30px 25px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery .featured-gallery .main-gallery-item .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.gallery .featured-gallery .main-gallery-item .gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.95rem;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 400px;
}
@media (max-width: 768px) {
  .gallery .gallery-grid {
    height: 300px;
    gap: 10px;
  }
}
.gallery .gallery-grid .gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.gallery .gallery-grid .gallery-grid-item:hover {
  transform: scale(1.02);
}
.gallery .gallery-grid .gallery-grid-item:hover .grid-overlay {
  opacity: 1;
}
.gallery .gallery-grid .gallery-grid-item:hover img {
  transform: scale(1.05);
}
.gallery .gallery-grid .gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery .gallery-grid .gallery-grid-item .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery .gallery-grid .gallery-grid-item .grid-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}
.gallery .gallery-thumbnails {
  margin: 3rem 0;
}
.gallery .gallery-thumbnails .thumbnail-gallery .swiper-wrapper {
  height: auto !important;
}
.gallery .gallery-thumbnails .thumbnail-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery .gallery-thumbnails .thumbnail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.gallery .gallery-thumbnails .thumbnail-item:hover img {
  transform: scale(1.1);
}
.gallery .gallery-thumbnails .thumbnail-item:hover::after {
  opacity: 0.7;
}
.gallery .gallery-thumbnails .thumbnail-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery .gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .gallery .gallery-thumbnails .thumbnail-item img {
    height: 60px;
  }
}
.gallery .gallery-thumbnails .thumbnail-item .thumbnail-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.gallery .gallery-actions {
  margin-top: 2rem;
}
.gallery .gallery-actions .action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .gallery .gallery-actions .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.gallery .gallery-actions .btn-primary-gallery,
.gallery .gallery-actions .btn-secondary-gallery {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid;
}
.gallery .gallery-actions .btn-primary-gallery i,
.gallery .gallery-actions .btn-secondary-gallery i {
  font-size: 1.1rem;
}
.gallery .gallery-actions .btn-primary-gallery:hover,
.gallery .gallery-actions .btn-secondary-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .gallery .gallery-actions .btn-primary-gallery,
  .gallery .gallery-actions .btn-secondary-gallery {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}
.gallery .gallery-actions .btn-primary-gallery {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.gallery .gallery-actions .btn-primary-gallery:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000000 15%);
  color: var(--contrast-color);
}
.gallery .gallery-actions .btn-secondary-gallery {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.gallery .gallery-actions .btn-secondary-gallery:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/* apparatus featured - main section */
.about-3 {

  .image-section {
    position: relative;
    
    .primary-image {
      position: relative;
      margin-bottom: 2rem;
      
      img {
        border-radius: 6px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      }
      
      .experience-badge {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background-color: var(--surface-color);
        padding: 1.5rem;
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        text-align: center;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        
        @media (max-width: 768px) {
          top: 1rem;
          right: 1rem;
          padding: 1rem;
        }
        
        .years {
          display: block;
          font-size: 1.75rem;
          font-weight: 700;
          color: var(--accent-color);
          line-height: 1;
          margin-bottom: 0.25rem;
        }
        
        .text {
          font-size: 0.75rem;
          color: color-mix(in srgb, var(--default-color), transparent 40%);
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }
      }
    }
    
    .image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      
      .grid-img {
        border-radius: 6px;
        aspect-ratio: 4/3;
        object-fit: cover;
        transition: transform 0.3s ease;
        
        &:hover {
          transform: translateY(-3px);
        }
      }
    }
    
    @media (max-width: 992px) {
      margin-bottom: 3rem;
    }
  }

  .content-section {
    padding-left: 2rem;
    
    @media (max-width: 992px) {
      padding-left: 0;
    }
  }

  .section-intro {
    margin-bottom: 3rem;
    
    .company-badge {
      display: inline-block;
      background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
      color: var(--accent-color);
      padding: 0.5rem 1.25rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
    }
    
    h2 {
      font-size: 2.125rem;
      line-height: 1.25;
      margin-bottom: 1.5rem;
      font-weight: 600;
      color: var(--heading-color);
      
      @media (max-width: 768px) {
        font-size: 1.75rem;
      }
    }
    
    .intro-text {
      font-size: 1rem;
      line-height: 1.7;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      margin: 0;
    }
  }

  .achievement-list {
    margin-bottom: 3rem;
    
    .achievement-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      margin-bottom: 2rem;
      
      &:last-child {
        margin-bottom: 0;
      }
      
      .achievement-icon {
        width: 50px;
        height: 50px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
      }
      
      .achievement-content {
        h4 {
          font-size: 1.125rem;
          font-weight: 600;
          color: var(--heading-color);
          margin-bottom: 0.5rem;
        }
        
        p {
          color: color-mix(in srgb, var(--default-color), transparent 30%);
          line-height: 1.6;
          margin: 0;
          font-size: 0.9rem;
        }
      }
    }
  }

  .action-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    
    @media (max-width: 576px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .btn-primary {
      background-color: var(--accent-color);
      border-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 0.75rem 2rem;
      font-weight: 600;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.3s ease;
      
      &:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        border-color: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-1px);
      }
    }
    
    .contact-info {
      .contact-label {
        display: block;
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 0.25rem;
      }
      
      .phone-number {
        font-size: 1.125rem;
        color: var(--heading-color);
        font-weight: 600;
      }
    }
  }
}