﻿/* ======================================== */
/* new-projects.css - Extracted from blade      */
/* ======================================== */

.np-hero { background: linear-gradient(135deg, #024A57 0%, #04A5B5 50%, #03868f 100%); padding: 56px 0 48px; text-align: center; position: relative; overflow: hidden; }
.np-hero::before { content:''; position: absolute; top:-80px; right:-50px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.04); }
.np-hero::after { content:''; position: absolute; bottom:-60px; left: 20%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.03); }
.np-hero h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; z-index:1; }
.np-hero p { font-size: .95rem; color: rgba(255,255,255,.65); position: relative; z-index:1; max-width: 500px; margin: 0 auto; }

.np-wrap { padding: 40px 0 72px; }

.np-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-bottom: 32px; }
.np-card { background: #fff; border: 1px solid #eee; border-radius: 16px; overflow: hidden; transition: all .2s; }
.np-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); transform: translateY(-3px); }

.np-card-header { padding: 24px 24px 0; }
.np-card-header .np-type { display: inline-block; padding: 4px 12px; border-radius: 8px; font-size: .72rem; font-weight: 700; background: rgba(4,165,181,.1); color: #04A5B5; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.np-card-header h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; line-height: 1.4; }
.np-card-header .np-addr { font-size: .82rem; color: #888; display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }

.np-card-stats { display: flex; gap: 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.np-stat { flex: 1; padding: 14px 16px; text-align: center; border-right: 1px solid #f0f0f0; }
.np-stat:last-child { border-right: none; }
.np-stat .ns-num { font-size: 1.1rem; font-weight: 800; color: #024A57; }
.np-stat .ns-label { font-size: .72rem; color: #999; font-weight: 600; margin-top: 2px; }

.np-card-footer { padding: 16px 24px; display: flex; gap: 10px; }
.np-card-footer a { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-size: .84rem; font-weight: 600; text-decoration: none; transition: all .15s; }
.np-card-footer .np-view { background: #04A5B5; color: #fff; }
.np-card-footer .np-view:hover { background: #038898; }
.np-card-footer .np-contact { background: #f5f5f5; color: #555; }
.np-card-footer .np-contact:hover { background: #eee; }

.np-empty { text-align: center; padding: 80px 20px; }
.np-empty svg { margin-bottom: 16px; opacity: .3; }
.np-empty p { font-size: 1rem; font-weight: 600; color: #bbb; }
.np-empty .sub { font-size: .86rem; font-weight: 400; margin-top: 6px; color: #ccc; }

.np-pager { text-align: center; margin-top: 32px; }
.np-pager .pagination { display: inline-flex; gap: 4px; }
.np-pager .page-link { padding: 8px 14px; border-radius: 8px; border: 1px solid #e0e0e0; color: #555; text-decoration: none; font-size: .84rem; font-weight: 600; transition: all .15s; }
.np-pager .page-item.active .page-link { background: #04A5B5; color: #fff; border-color: #04A5B5; }
.np-pager .page-link:hover { background: #f5f5f5; }

@media (max-width: 640px) {
    .np-grid { grid-template-columns: 1fr; }
    .np-hero h1 { font-size: 1.5rem; }
    .np-wrap { padding: 24px 0 48px; }
}

@media (max-width: 480px) {
    .np-hero { padding: 36px 0 32px; }
    .np-hero h1 { font-size: 1.25rem; }
    .np-card-header { padding: 18px 16px 0; }
    .np-card-footer { padding: 12px 16px; }
    .np-card-stats { flex-wrap: wrap; }
    .np-stat { min-width: 50%; }
}
