
   

    /* ============================================ */
    /* ========== PAGE HERO ========== */
    /* ============================================ */
    .page-hero {
      width: 100%;
      min-height: 35vh;
      background: linear-gradient(160deg, #0a2415 0%, #0f381e 40%, #14522d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 2rem 4rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
      border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
      pointer-events: none;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      bottom: -15%;
      left: -8%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
      border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
      pointer-events: none;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-hero-content .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      color: #a0c89a;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .page-hero-content .breadcrumb a {
      color: #a0c89a;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hero-content .breadcrumb a:hover {
      color: #d4f0c8;
    }

    .page-hero-content .breadcrumb i {
      font-size: 0.5rem;
    }

    .page-hero-content .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: #b5f0a0;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }

    .page-hero-content .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.78);
      max-width: 550px;
      margin: 0 auto;
    }

    /* ============================================ */
    /* ========== GALLERY CONTENT ========== */
    /* ============================================ */
    .gallery-content {
      width: 100%;
      padding: 5rem 4rem;
      background: #fafdf8;
    }

    .gallery-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ========== SECTION HEADER ========== */
    .gallery-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gallery-section-header .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf7e8;
      color: #125228;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1.4rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      border: 1px solid #cbe5c3;
    }

    .gallery-section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.3px;
    }

    /* ========== VIDEO SECTION ========== */
    .video-section {
      margin-bottom: 5rem;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .video-card {
      background: #ffffff;
      border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      overflow: hidden;
      border: 1px solid #e8f2e4;
      box-shadow: 0 8px 24px -8px rgba(15, 40, 20, 0.06);
      transition: all 0.35s ease;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 36px -10px rgba(15, 55, 25, 0.18);
      border-color: #d4e8cc;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #0a1f12;
      overflow: hidden;
    }

    .video-wrapper video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-label {
      padding: 1rem 1.2rem;
      text-align: center;
    }

    .video-label h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.2rem;
    }

    .video-label span {
      font-size: 0.78rem;
      color: #7a8d72;
      font-weight: 500;
    }

    /* ========== PHOTO GALLERY ========== */
    .photo-gallery {
      columns: 4;
      column-gap: 1.5rem;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 1.5rem;
      position: relative;
      border-radius: 1.2rem 0.3rem 1.2rem 0.3rem;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.35s ease;
      box-shadow: 0 6px 18px -6px rgba(15, 40, 20, 0.1);
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 14px 32px -10px rgba(15, 55, 25, 0.25);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item .image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,25,15,0.7) 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      align-items: flex-end;
      padding: 1.2rem;
    }

    .gallery-item:hover .image-overlay {
      opacity: 1;
    }

    .image-overlay span {
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* ========== LIGHTBOX ========== */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.92);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .lightbox.open {
      opacity: 1;
      visibility: visible;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 85vh;
      border-radius: 1rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #ffffff;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      background: rgba(255,255,255,0.25);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #ffffff;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .lightbox-nav:hover {
      background: rgba(255,255,255,0.25);
    }

    .lightbox-prev { left: 2rem; }
    .lightbox-next { right: 2rem; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1200px) {
      .photo-gallery {
        columns: 3;
      }
    }

    @media (max-width: 900px) {
      .gallery-content {
        padding: 4rem 2rem;
      }

      .photo-gallery {
        columns: 2;
      }

      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .gallery-content {
        padding: 3rem 1.2rem;
      }

      .photo-gallery {
        columns: 2;
        column-gap: 0.8rem;
      }

      .gallery-item {
        margin-bottom: 0.8rem;
        border-radius: 0.8rem 0.2rem 0.8rem 0.2rem;
      }

      .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .lightbox-prev { left: 1rem; }
      .lightbox-next { right: 1rem; }
    }

    @media (max-width: 400px) {
      .gallery-content {
        padding: 2.5rem 1rem;
      }

      .photo-gallery {
        columns: 1;
      }
    }



    .outro-text{
  color: #14522d;


    }
