      .modern-gallery {
        width: 100%;
        margin: 0 auto 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .main-image-wrapper {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Premium shadow */
        background: #fff;
        border: 1px solid #eaeaea;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow: hidden;
      }

      .main-image-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      }

      .main-image-wrapper a {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        cursor: zoom-in;
      }

      .main-image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
      }

      .main-image-wrapper:hover img {
        transform: scale(1.05);
      }

      .thumbnails-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
        justify-content: center;
      }

      .thumbnail-wrapper {
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        aspect-ratio: 1;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        opacity: 0.6;
      }

      .thumbnail-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .thumbnail-wrapper:hover {
        opacity: 0.9;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      }

      .thumbnail-wrapper.active {
        border-color: #BD9E41;
        opacity: 1;
        box-shadow: 0 0 15px rgba(189, 158, 65, 0.3);
      }

      /* Premium Layout Styles */
      .section-title {
          font-size: 32px;
          font-weight: 700;
          margin-bottom: 20px;
          position: relative;
          display: inline-block;
          color: #1e293b;
      }
      .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 50px;
          height: 4px;
          background: linear-gradient(90deg, #BD9E41, #fbbf24);
          border-radius: 2px;
      }

      .service-feature {
          display: flex;
          align-items: flex-start;
          margin-bottom: 15px;
          background: #f8fafc;
          padding: 15px;
          border-radius: 8px;
          border-left: 3px solid #BD9E41;
      }

      .service-feature i {
          color: #BD9E41;
          margin-right: 15px;
          margin-top: 4px;
          font-size: 18px;
          flex-shrink: 0;
      }

      .application-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 25px;
          padding: 25px;
          border-radius: 10px;
          transition: all 0.3s ease;
          background: white;
          box-shadow: 0 5px 20px rgba(0,0,0,0.05);
          height: 100%;
      }

      .application-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      }

      .application-icon {
          background: #f0f9ff;
          color: #BD9E41;
          width: 60px;
          height: 60px;
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 26px;
          margin-right: 20px;
          flex-shrink: 0;
      }
      .application-content h4 {
          margin-top: 0;
          font-weight: 700;
          color: #1e293b;
      }

      .advantage-card {
          background: white;
          border-radius: 10px;
          padding: 30px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          height: 100%;
          border-bottom: 4px solid #BD9E41;
          margin-bottom: 30px;
      }

      .advantage-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      }

      .advantage-card h4 {
          font-size: 20px;
          font-weight: 700;
          margin-bottom: 15px;
          color: #1e293b;
      }

      .btn-custom-primary {
          background: linear-gradient(135deg, #BD9E41 0%, #d4af37 100%);
          border: none;
          color: white;
          font-weight: 700;
          padding: 14px 32px;
          font-size: 16px;
          border-radius: 6px;
          box-shadow: 0 4px 15px rgba(189, 158, 65, 0.3);
          transition: all 0.3s ease;
          display: inline-block;
          text-decoration: none;
      }

      .btn-custom-primary:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(189, 158, 65, 0.4);
          color: white;
          text-decoration: none;
      }

      .mt-40 { margin-top: 40px; }
      .mb-40 { margin-bottom: 40px; }
      
      #aboutus {
          margin-top: 56px;
      }