 /* ============================================
       GALLERY SECTION ONLY - COMPLETE CSS
       (Including required root variables and styles for standalone use)
       ============================================ */
    
    /* Root Variables - Matching the main site theme */
    :root {
      --zim-gold: #f5a623;
      --zim-yellow: #d4a017;
      --zim-crimson: #cc0f0f;
      --zim-emerald: #1a5f2a;
      --zim-deep-blue: #0a2540;
      --zim-ocean-blue: #1a4a6f;
      --zim-bright-green: #10b981;
      --zim-lime: #34d399;
      --zim-charcoal: #1a1a1a;
      --zim-dark-charcoal: #2d2d2d;
      --zim-white: #ffffff;
      --zim-off-white: #fef9f0;
      --zim-gray-light: #f8fafc;
      --zim-gray: #94a3b8;
      --zim-gray-dark: #334155;
      --primary: var(--zim-gold);
      --primary-dark: var(--zim-yellow);
      --secondary: var(--zim-deep-blue);
      --accent: var(--zim-bright-green);
      --text-primary: var(--zim-charcoal);
      --text-secondary: var(--zim-gray);
      --text-light: #e2e8f0;
      --bg-primary: var(--zim-white);
      --bg-secondary: var(--zim-off-white);
      --border-light: #e2e8f0;
      --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
      --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
      --text-xs: 0.7rem;
      --text-sm: 0.8rem;
      --text-base: 1rem;
      --text-md: 1.1rem;
      --text-lg: 1.25rem;
      --text-xl: 1.5rem;
      --text-2xl: 1.75rem;
      --text-3xl: 2rem;
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 1.5rem;
      --spacing-lg: 2rem;
      --spacing-xl: 3rem;
      --spacing-2xl: 5rem;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      color: var(--text-primary);
      background: var(--bg-primary);
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 var(--spacing-lg);
    }

    /* Section Styles */
    .section {
      padding: var(--spacing-2xl) 0;
    }

    .bg-light {
      background: var(--bg-secondary);
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--spacing-xl);
    }

    .section-header h2 {
      font-size: var(--text-3xl);
      margin-bottom: var(--spacing-xs);
      font-family: 'Playfair Display', serif;
      color: var(--text-primary);
    }

    .badge {
      background: var(--zim-gold);
      color: var(--zim-charcoal);
      padding: 0.25rem 0.75rem;
      border-radius: 30px;
      font-size: var(--text-sm);
      font-weight: 600;
      display: inline-block;
      margin-bottom: var(--spacing-sm);
    }

    /* ============================================
       EXPANDED GALLERY SECTION - COMPLETE STYLES
       ============================================ */
    
    /* Filter Buttons */
    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-xl);
      flex-wrap: wrap;
    }

    .filter-btn {
      background: transparent;
      border: 2px solid var(--zim-gold);
      padding: 0.5rem 1.25rem;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: var(--text-sm);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--zim-gold);
      color: var(--zim-charcoal);
      transform: translateY(-2px);
    }

    /* Gallery Grid */
    .gallery-grid-expanded {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: var(--spacing-lg);
    }

    /* Gallery Item Card */
    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      background: var(--bg-primary);
      cursor: pointer;
      animation: fadeInUp 0.5s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    /* Gallery Image */
    .gallery-image {
      overflow: hidden;
      height: 250px;
      position: relative;
    }

    .gallery-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-image img {
      transform: scale(1.05);
    }

    /* Overlay effect on hover */
    .gallery-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .gallery-item:hover .gallery-image::after {
      opacity: 1;
    }

    /* Gallery Caption */
    .gallery-caption {
      padding: var(--spacing-sm);
      background: var(--bg-primary);
      border-top: 1px solid var(--border-light);
    }

    .gallery-caption h4 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      color: var(--zim-emerald);
      font-weight: 700;
    }

    .gallery-caption p {
      font-size: var(--text-sm);
      color: var(--text-secondary);
      margin-bottom: var(--spacing-xs);
    }

    .gallery-location {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: var(--text-xs);
      color: var(--zim-gold);
      margin-top: var(--spacing-xs);
      font-weight: 500;
    }

    .gallery-location i {
      font-size: 0.7rem;
    }

    /* Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.92);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      cursor: pointer;
      backdrop-filter: blur(5px);
    }

    .lightbox.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .lightbox-img {
      max-width: 90%;
      max-height: 80%;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 0 40px rgba(0,0,0,0.5);
      border: 2px solid var(--zim-gold);
    }

    .lightbox-caption {
      color: white;
      margin-top: 1.5rem;
      text-align: center;
      font-size: 1rem;
      background: rgba(0,0,0,0.7);
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      max-width: 80%;
      backdrop-filter: blur(4px);
    }

    .lightbox-caption h4 {
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
      color: var(--zim-gold);
    }

    .lightbox-caption p {
      font-size: 0.85rem;
      opacity: 0.9;
    }

    .lightbox-close {
      position: absolute;
      top: 25px;
      right: 35px;
      font-size: 2.2rem;
      color: white;
      cursor: pointer;
      transition: 0.2s;
      z-index: 2001;
    }

    .lightbox-close:hover {
      color: var(--zim-gold);
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .container {
        padding: 0 var(--spacing-sm);
      }
      .gallery-grid-expanded {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
      }
      .gallery-filters {
        gap: 0.6rem;
      }
      .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
      }
      .section-header h2 {
        font-size: var(--text-2xl);
      }
      .lightbox-img {
        max-width: 95%;
        max-height: 70%;
      }
      .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      .section {
        padding: var(--spacing-xl) 0;
      }
      .gallery-caption h4 {
        font-size: 1rem;
      }
      .filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
      }
    }

    /* Demo page styling (just to showcase the gallery section properly) */
    .demo-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .demo-header {
      background: linear-gradient(135deg, var(--zim-deep-blue), var(--zim-charcoal));
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }
    .demo-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
    }
    .zim-stripe {
      display: flex;
      height: 5px;
      width: 100%;
    }
    .stripe-green { flex: 1; background: #1a5f2a; }
    .stripe-yellow { flex: 1; background: #d4a017; }
    .stripe-red { flex: 1; background: #cc0f0f; }
    .stripe-black { flex: 1; background: #1a1a1a; }