    /* ===== GALLERY PAGE STYLES ===== */

    /* ===== GALLERY SECTION ===== */
    .gallery-section {
      padding: 60px 0 80px;
      background: #fff;
    }

    .gallery-intro {
      max-width: 820px;
      margin: 0 auto 40px;
      text-align: center;
      padding: 0 16px;
    }
    .gallery-intro h2 {
      font-size: 42px;
      color: #222;
      margin-bottom: 14px;
    }
    .gallery-intro p {
      font-size: 15px;
      color: #555;
      text-align:justify;
      line-height: 1.75;
      margin-bottom: 10px;
    }
    .gallery-intro p.hidden-text {
      display: none;
    }
    .read-more-btn {
      background: none;
      border: none;
      font-size: 14px;
      color: #b502ac;
      cursor: pointer;
      padding: 0;
      margin-top: 4px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .read-more-btn:hover { text-decoration: underline; }

    /* Filter Tabs */
    .gallery-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      padding: 0 16px;
    }
    .gallery-tab {
      font-size: 14px;
      font-weight: 600;
      padding: 8px 24px;
      border: 1.5px solid #ddd;
      border-radius: 50px;
      background: transparent;
      color: #555;
      cursor: pointer;
      transition: all .2s ease;
    }
    .gallery-tab:hover {
      border-color: #5c1da3;
      color: #5c1da3;
    }
    .gallery-tab.active {
      background: #5c1da3;
      border-color: #5c1da3;
      color: #fff;
    }

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 14px;
      padding: 0 16px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .gallery-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      cursor: pointer;
      background: #f0f0f0;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.06);
    }
    .gallery-item__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background .25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-item:hover .gallery-item__overlay {
      background: rgba(0,0,0,0.22);
    }
    .overlay-icon {
      opacity: 0;
      transition: opacity .2s ease;
      color: #fff;
    }
    .gallery-item:hover .overlay-icon { opacity: 1; }
    .overlay-icon svg {
      width: 40px;
      height: 40px;
      fill: #fff;
    }
    /* Video play badge */
    .play-badge {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .play-badge-circle {
      width: 54px;
      height: 54px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s;
    }
    .gallery-item:hover .play-badge-circle { transform: scale(1.1); }
    .play-badge-circle svg {
      width: 22px;
      height: 22px;
      fill: #5c1da3;
      margin-left: 3px;
    }
    /* Video label */
    .video-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #5c1da3;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      padding: 3px 10px;
      border-radius: 50px;
      text-transform: uppercase;
    }

    /* ===== LIGHTBOX ===== */
    .lb-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lb-backdrop.open { display: flex; }

    .lb-close {
      position: fixed;
      top: 18px;
      right: 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      z-index: 10001;
    }
    .lb-close:hover { color: #e05a1e; }

    .lb-img-wrap {
      max-width: 92vw;
      max-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-img-wrap img {
      max-width: 92vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 10px;
      display: none;
    }

    .lb-yt-wrap {
      display: none;
      width: min(92vw, 860px);
      aspect-ratio: 16 / 9;
    }
    .lb-yt-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 10px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
    
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .gallery-intro h2 { font-size: 32px; }
    }
    @media (max-width: 400px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    }
