/* === Hero Section === */
    .hero {
      min-height: unset;
      background: #fff;
      padding: 140px 0 100px;
      overflow: visible;
      width: 100%;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1549060279-7e168fce7090?q=80&w=2070') no-repeat center center/cover;
      opacity: 0.05;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-left {
      flex: 1;
      max-width: 600px;
      position: relative;
      z-index: 2;
    }

    .hero-left h1 {
      font-size: 4.2rem;
      font-weight: 700;
      margin-bottom: 1.8rem;
      color: var(--rifle-green);
      line-height: 1.12;
      position: relative;
      overflow: hidden;
    }

    .hero-left h1 span {
      display: block;
      transform: translateY(40px);
      opacity: 0;
      animation: fadeInUp 0.9s forwards;
    }

    .hero-left h1 span:first-child {
      animation-delay: 0.3s;
    }

    .hero-left h1 span:last-child {
      animation-delay: 0.5s;
    }

    .hero-left p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      color: var(--rifle-green);
      line-height: 1.7;
      transform: translateY(40px);
      opacity: 0;
      animation: fadeInUp 0.9s 0.7s forwards;
      font-weight: 300;
    }

    .hero-btn {
      transform: translateY(40px);
      opacity: 0;
      animation: fadeInUp 0.9s 0.9s forwards;
    }

    .hero-right {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
    }

    .hero-img-container {
      position: relative;
      width: 100%;
      max-width: 480px;
      height: 600px;
      overflow: hidden;
      border-radius: 5px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.15);
      transform: translateY(40px);
      opacity: 0;
      animation: fadeInUp 0.9s 1.1s forwards;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-img-container:hover .hero-img {
      transform: scale(1.05);
    }

    .shape-decoration {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: var(--light-moss);
      opacity: 0.08;
      z-index: -1;
      animation: float 8s ease-in-out infinite;
    }

    .shape-1 {
      top: -50px;
      left: -50px;
      animation-delay: 0s;
    }

    .shape-2 {
      bottom: -70px;
      right: -30px;
      width: 150px;
      height: 150px;
      animation-delay: 0.4s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(5deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }

        @media (max-width: 1200px) {
      .hero-left h1 {
        font-size: 3.5rem;
      }
    }

     @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }

      .hero-left {
        margin-bottom: 60px;
      }
    }


    @media (max-width: 576px) {
      .hero-left h1 {
        font-size: 2.4rem;
      }

      .hero-left p {
        font-size: 1.1rem;
      }
    }


        /* === Custom Hero Section (Title + 3 Images) === */
.custom-hero {
  background: #f8f6f2;
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.custom-hero-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
  font-family: 'EmotiveType', serif;
  font-size: 4.5rem;
  letter-spacing: 0.02em;
  color: var(--rifle-green);
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.circle-img {
  display: inline-flex;
  align-items: center;
  position: relative;
  transform: translateY(-10px);
}

.circle-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.circle-img-wide {
  transform: translateY(-5px);
}

.circle-img-wide img {
  width: 90px;
  height: 60px;
  border-radius: 30px;
}

.circle-img img:hover {
  transform: scale(1.1);
}

.custom-hero-title .highlight {
  color: var(--light-moss);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
  .custom-hero-title {
    font-size: 3.8rem;
    gap: 15px 25px;
  }
  
  .circle-img img {
    width: 50px;
    height: 50px;
  }
  
  .circle-img-wide img {
    width: 75px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .custom-hero-title {
    font-size: 2.8rem;
    gap: 12px 20px;
  }
  
  .circle-img img {
    width: 40px;
    height: 40px;
  }
  
  .circle-img-wide img {
    width: 60px;
    height: 40px;
  }
}

.custom-hero-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1800px;
  margin: 60px auto 0;
  padding: 0 40px;
  position: relative;
}

.hero-img-shape {
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 20px;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* aspect-ratio: 3/4; */
}

.hero-img-shape img,
.hero-img-shape video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-shape:hover img,
.hero-img-shape:hover video {
  transform: scale(1.1);
}

/* Specific shape styles */
.hero-img-2 video,
.hero-img-3 video {
  filter: brightness(1.1) contrast(1.1);
}

.hero-img-1 {
  grid-column: 1 / 2;
  border-radius: 0 150px 0 150px;
}

.hero-img-2 {
  grid-column: 2 / 3;
  border-radius: 150px 150px 0 0;
}

.hero-img-3 {
  grid-column: 3 / 4;
  border-radius: 150px 150px 0 0;
}

.hero-img-4 {
  grid-column: 4 / 5;
  border-radius: 150px 0 150px 150px;
}

.hero-img-shape:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 60px rgba(0,0,0,0.2);
}

.hero-img-shape:hover img {
  transform: scale(1.1);
}

@media (max-width: 1400px) {
  .hero-img-shape img {
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .custom-hero-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-img-shape {
    grid-column: auto;
  }
  
  .hero-img-shape img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .custom-hero-images {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 40px auto 0;
  }
  
  .hero-img-shape img {
    height: 350px;
  }
}