/* ============================================================
   INDO PORTFOLIO PRO - GLOBAL STYLING
   ============================================================ */
.indo-portfolio-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

/* --- HEADER STYLING --- */
.indo-port-header {
    text-align: center;
    margin-bottom: 50px;
}

.indo-sub-title {
    display: block;
    color: #e60000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.indo-main-title {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
    text-transform: capitalize;
}

.indo-description {
    max-width: 750px;
    margin: 0 auto !important;
    color: #555 !important;
    line-height: 1.8 !important;
    font-size: 1.15rem !important;
}

/* --- SEARCH BAR MODERN --- */
.indo-search-container {
    max-width: 650px;
    margin: 0 auto 60px;
}

.indo-search-box {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.indo-search-box:focus-within {
    border-color: #e60000;
    box-shadow: 0 10px 30px rgba(230,0,0,0.15);
}

#indo-search-input {
    width: 100% !important;
    padding: 18px 25px 18px 60px !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    color: #333 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Icon Kaca Pembesar */
.indo-search-box::before {
    content: "";
    position: absolute;
    left: 25px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23aaaaaa' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
}

/* --- GRID & CARDS --- */
.indo-portfolio-grid {
    display: grid !important;
    /* Menggunakan auto-fit agar kartu otomatis mengisi ruang yang ada */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; 
    gap: 30px !important;
    width: 100% !important;
    padding: 20px 0 !important;
}

.indo-port-card {
    /* Pastikan display flex agar card memanjang seragam */
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    height: 100%;
}

.indo-port-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(230, 0, 0, 0.12) !important;
    border-color: rgba(230, 0, 0, 0.3) !important;
}

/* Image Section */
.indo-port-img {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.indo-port-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.indo-port-card:hover .indo-port-img img {
    transform: scale(1.1);
}

.indo-port-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e60000 !important;
    color: #ffffff !important;
    padding: 6px 18px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3) !important;
}

/* Info Section */
.indo-port-info {
    padding: 30px !important;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.indo-port-info h3 {
    margin: 0 0 15px 0 !important;
    font-size: 1.4rem !important;
    color: #222 !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.indo-port-info p {
    font-size: 1rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    flex-grow: 1;
}

/* WhatsApp Button */
.indo-port-wa {
    display: block !important;
    background: #e60000 !important;
    color: #ffffff !important;
    padding: 15px 25px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #e60000 !important;
}

.indo-port-wa:hover {
    background: transparent !important;
    color: #e60000 !important;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.15) !important;
}

/* --- EMPTY STATE --- */
.indo-no-data {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    background: #fdfdfd;
    border: 2px dashed #eee;
    border-radius: 20px;
    color: #999;
    font-size: 1.2rem;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 992px) {
    .indo-main-title { font-size: 2.2rem !important; }
}

@media (max-width: 768px) {
    .indo-portfolio-wrapper { padding: 40px 15px; }
    .indo-main-title { font-size: 1.8rem !important; }
    .indo-description { font-size: 1rem !important; }
    .indo-search-container { margin-bottom: 40px; }
    .indo-portfolio-grid { gap: 25px !important; }
    .indo-port-img { height: 200px; }
}

@media (max-width: 480px) {
    .indo-portfolio-grid {
        grid-template-columns: 1fr !important;
    }
}