 /* =============================================
       PORTFOLIO LIST PAGE
       ============================================= */

 /* ---- Hero ---- */
 .pf-hero {
     position: relative;
     min-height: 380px;
     display: flex;
     align-items: center;
     background: #0f0f23;
     overflow: hidden;
 }

 .pf-hero__pattern {
     position: absolute;
     inset: 0;
     background-image:
         radial-gradient(circle at 12% 55%, rgba(232, 164, 0, .16) 0%, transparent 48%),
         radial-gradient(circle at 88% 18%, rgba(232, 164, 0, .09) 0%, transparent 42%);
 }

 .pf-hero__dots {
     position: absolute;
     inset: 0;
     background-image: radial-gradient(rgba(255, 255, 255, .05) 1.5px, transparent 1.5px);
     background-size: 28px 28px;
 }

 .pf-hero__content {
     position: relative;
     z-index: 2;
     padding: 110px 0 85px;
 }

 .pf-hero__breadcrumb {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     color: rgba(255, 255, 255, .5);
     margin-bottom: 20px;
 }

 .pf-hero__breadcrumb a {
     color: #e8a400;
     text-decoration: none;
     transition: color .2s;
 }

 .pf-hero__breadcrumb a:hover {
     color: #fff;
 }

 .pf-hero__badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(232, 164, 0, .12);
     border: 1px solid rgba(232, 164, 0, .35);
     color: #e8a400;
     padding: 7px 18px;
     border-radius: 50px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .pf-hero__title {
     font-size: clamp(34px, 5vw, 54px);
     font-weight: 800;
     color: #fff;
     line-height: 1.15;
     margin: 0 0 18px;
 }

 .pf-hero__title span {
     color: #e8a400;
 }

 .pf-hero__desc {
     font-size: 16px;
     color: rgba(255, 255, 255, .62);
     line-height: 1.85;
     max-width: 560px;
     margin: 0;
 }

 .pf-hero__stats {
     display: flex;
     gap: 36px;
     flex-wrap: wrap;
     margin-top: 34px;
 }

 .pf-hero__stat strong {
     display: block;
     font-size: 28px;
     font-weight: 800;
     color: #e8a400;
     line-height: 1;
 }

 .pf-hero__stat span {
     font-size: 12px;
     color: rgba(255, 255, 255, .45);
     margin-top: 3px;
     display: block;
 }

 /* ---- Filter Toolbar ---- */
 .pf-toolbar {
     background: #fff;
     border-bottom: 1px solid #eef0f5;
     padding: 16px 0;
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
 }

 .pf-toolbar__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 14px;
 }

 .pf-toolbar__cats {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     align-items: center;
 }

 .pf-toolbar__label {
     font-size: 13px;
     font-weight: 600;
     color: #6b7280;
     white-space: nowrap;
     margin-right: 4px;
 }

 .pf-pill {
     padding: 7px 18px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     border: 1.5px solid #e5e7eb;
     color: #6b7280;
     text-decoration: none;
     transition: all .25s ease;
     white-space: nowrap;
 }

 .pf-pill:hover,
 .pf-pill--active {
     background: #e8a400;
     border-color: #e8a400;
     color: #fff;
 }

 .pf-toolbar__count {
     font-size: 13px;
     color: #9ca3af;
     font-weight: 500;
     white-space: nowrap;
 }

 /* ---- Main ---- */
 .pf-main {
     padding: 65px 0 90px;
     background: #f8f9fc;
 }

 /* ---- Portfolio Card ---- */
 .pf-card {
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     border: 1px solid #eef0f5;
     box-shadow: 0 4px 22px rgba(0, 0, 0, .06);
     transition: all .35s ease;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .pf-card:hover {
     box-shadow: 0 22px 60px rgba(0, 0, 0, .13);
     transform: translateY(-7px);
     border-color: rgba(232, 164, 0, .3);
 }

 .pf-card__img {
     position: relative;
     overflow: hidden;
     aspect-ratio: 4/3;
 }

 .pf-card__img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform .6s ease;
 }

 .pf-card:hover .pf-card__img img {
     transform: scale(1.07);
 }

 .pf-card__cat {
     position: absolute;
     top: 14px;
     left: 14px;
     z-index: 2;
     background: #e8a400;
     color: #fff;
     padding: 5px 14px;
     border-radius: 50px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     text-decoration: none;
     transition: background .2s;
 }

 .pf-card__cat:hover {
     background: #d49500;
     color: #fff;
 }

 .pf-card__overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(to top, rgba(10, 10, 30, .65) 0%, transparent 55%);
     opacity: 0;
     transition: opacity .35s ease;
     display: flex;
     align-items: flex-end;
     padding: 20px;
 }

 .pf-card:hover .pf-card__overlay {
     opacity: 1;
 }

 .pf-card__view {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     padding: 9px 20px;
     background: #e8a400;
     color: #fff;
     border-radius: 8px;
     font-size: 13px;
     font-weight: 700;
     text-decoration: none;
     transition: background .2s;
 }

 .pf-card__view:hover {
     background: #d49500;
     color: #fff;
 }

 .pf-card__body {
     padding: 22px 24px 26px;
     display: flex;
     flex-direction: column;
     flex: 1;
 }

 .pf-card__title {
     font-size: 17px;
     font-weight: 700;
     color: #1a1a2e;
     line-height: 1.4;
     margin-bottom: 10px;
     transition: color .25s;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .pf-card:hover .pf-card__title {
     color: #e8a400;
 }

 .pf-card__desc {
     font-size: 13.5px;
     color: #6b7280;
     line-height: 1.75;
     flex: 1;
     margin-bottom: 16px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .pf-card__footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 14px;
     border-top: 1px solid #f3f4f6;
 }

 .pf-card__cat-label {
     font-size: 12px;
     color: #e8a400;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .pf-card__link {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     font-size: 13px;
     font-weight: 700;
     color: #e8a400;
     text-decoration: none;
     transition: gap .25s ease;
 }

 .pf-card:hover .pf-card__link {
     gap: 9px;
 }

 /* ---- Masonry-style featured first card ---- */
 .pf-card--featured .pf-card__img {
     aspect-ratio: 16/8;
 }

 .pf-card--featured .pf-card__title {
     font-size: 20px;
 }

 /* ---- Active filter chip ---- */
 .pf-filter-chip {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(232, 164, 0, .1);
     border: 1px solid rgba(232, 164, 0, .35);
     color: #e8a400;
     padding: 6px 14px;
     border-radius: 50px;
     font-size: 13px;
     font-weight: 600;
     margin-bottom: 24px;
     text-decoration: none;
     transition: all .2s;
 }

 .pf-filter-chip:hover {
     background: rgba(232, 164, 0, .2);
     color: #d49500;
 }

 /* ---- CTA ---- */
 .pf-cta {
     padding: 0 0 90px;
     background: #f8f9fc;
 }

 .pf-cta__box {
     background: linear-gradient(135deg, #0f0f23 0%, #1a1a40 100%);
     border-radius: 20px;
     padding: 65px 55px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 30px;
     position: relative;
     overflow: hidden;
 }

 .pf-cta__box::before {
     content: '';
     position: absolute;
     top: -70px;
     right: -70px;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: rgba(232, 164, 0, .07);
 }

 .pf-cta__box::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: 15%;
     width: 250px;
     height: 250px;
     border-radius: 50%;
     background: rgba(232, 164, 0, .05);
 }

 .pf-cta__label {
     color: #e8a400;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     margin-bottom: 12px;
     position: relative;
     z-index: 1;
 }

 .pf-cta__title {
     font-size: clamp(22px, 3vw, 34px);
     font-weight: 800;
     color: #fff;
     line-height: 1.3;
     margin: 0;
     position: relative;
     z-index: 1;
 }

 .pf-cta__btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     position: relative;
     z-index: 1;
 }

 .pf-btn-wa {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 30px;
     background: #25d366;
     color: #fff;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     border: 2px solid #25d366;
     transition: all .3s;
 }

 .pf-btn-wa:hover {
     background: #1ebe5b;
     border-color: #1ebe5b;
     transform: translateY(-2px);
     color: #fff;
 }

 /* ---- Empty state ---- */
 .pf-empty {
     text-align: center;
     padding: 80px 20px;
     background: #fff;
     border-radius: 16px;
     border: 1px dashed #e5e7eb;
 }

 .pf-empty i {
     font-size: 60px;
     color: #e5e7eb;
     margin-bottom: 18px;
     display: block;
 }

 .pf-empty h4 {
     font-size: 20px;
     font-weight: 700;
     color: #374151;
     margin-bottom: 10px;
 }

 .pf-empty p {
     color: #9ca3af;
     margin-bottom: 24px;
 }

 @media (max-width: 991px) {
     .pf-cta__box {
         padding: 50px 36px;
     }
 }

 @media (max-width: 767px) {
     .pf-hero__content {
         padding: 80px 0 65px;
     }

     .pf-main {
         padding: 50px 0 70px;
     }

     .pf-cta__box {
         padding: 40px 26px;
     }

     .pf-toolbar__cats {
         overflow-x: auto;
         padding-bottom: 4px;
     }
 }