
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 130px 24px 120px 24px;
  position: relative;
  z-index: 2;
  flex: 1;
}
.section-header { margin-bottom: 60px; text-align: center; }
.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(241, 178, 41, 0.5);
}
.section-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* Gallery Grid */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
      }

      .gallery-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 16 / 10;
        border: 1px solid var(--card-border);
        background: var(--card-bg);
        transition: var(--transition);
        cursor: pointer;
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
        display: block;
      }

      .gallery-item-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(8, 10, 16, 0.7) 0%,
          transparent 60%
        );
        opacity: 0;
        transition: var(--transition);
        display: flex;
        align-items: flex-end;
        padding: 18px;
      }

      .gallery-item-overlay span {
        font-family: "Space Grotesk", sans-serif;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 1px;
      }

      .zoom-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
        width: 48px;
        height: 48px;
        background: rgba(241, 178, 41, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
      }

      .zoom-icon svg {
        width: 22px;
        height: 22px;
        stroke: #080a10;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .gallery-item:hover {
        transform: scale(1.02);
        border-color: rgba(241, 178, 41, 0.35);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      }

      .gallery-item:hover img {
        transform: scale(1.07);
      }

      .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
      }

      .gallery-item:hover .zoom-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }

      /* Lightbox Modal */
      .lightbox-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(5, 6, 10, 0.97);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .lightbox-modal.active {
        display: flex;
        opacity: 1;
      }

      .lightbox-content {
        max-width: 88vw;
        max-height: 82vh;
        border-radius: 16px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transform: scale(0.88);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        object-fit: contain;
        position: relative;
        z-index: 1;
      }

      .lightbox-modal.active .lightbox-content {
        transform: scale(1);
      }

      .lightbox-close {
        position: absolute;
        z-index: 9999;
        top: 28px;
        right: 36px;
        color: #fff;
        font-size: 28px;
        font-weight: 300;
        cursor: pointer;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.06);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1;
      }

      .lightbox-close:hover {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.12);
        transform: scale(1.08) rotate(90deg);
      }

      /* Nav arrows */
      .lightbox-prev,
      .lightbox-next {
        position: absolute;
        z-index: 9999;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .lightbox-prev {
        left: 24px;
      }
      .lightbox-next {
        right: 24px;
      }

      .lightbox-prev:hover,
      .lightbox-next:hover {
        background: rgba(241, 178, 41, 0.2);
        border-color: var(--accent-color);
        color: var(--accent-color);
      }

      /* Counter */
      .lightbox-counter {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        font-family: "Space Grotesk", sans-serif;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 2px;
      }

      