/* =============================================
   ERP PRODUCTS - LISTING & SINGLE PAGE STYLES
   Matches Softconic dark theme aesthetic
============================================= */

/* ---- BREADCRUMB / INNER BANNER ---- */
.inner-banner {
    background: #0a0a0a;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid #1e1e1e;
}

.inner-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-saira);
}

.inner-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.inner-banner .breadcrumb-item {
    color: #999;
    font-size: 14px;
}

.inner-banner .breadcrumb-item a {
    color: rgb(6, 216, 137);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-banner .breadcrumb-item a:hover {
    color: rgb(5, 190, 120);
}

.inner-banner .breadcrumb-item.active {
    color: #b5b5b5;
}

.inner-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #555;
    content: "›";
}


/* =============================================
   PRODUCTS LISTING PAGE
============================================= */

.erp-products-listing {
    background: #0a0a0a;
    position: relative;
}

.erp-products-intro {
    margin-bottom: 70px;
}

.erp-products-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-saira);
}

.erp-products-intro h2 span {
    color: rgb(6, 216, 137);
}

/* Product Cards */
.erp-product-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.erp-product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.erp-product-card {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.erp-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgb(6, 216, 137), rgba(6, 216, 137, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.erp-product-card:hover {
    border-color: rgba(6, 216, 137, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.erp-product-card:hover::before {
    transform: scaleX(1);
}

.erp-product-card-icon {
    width: 65px;
    height: 65px;
    background: rgba(6, 216, 137, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.erp-product-card:hover .erp-product-card-icon {
    background: rgba(6, 216, 137, 0.2);
    transform: scale(1.05);
}

.erp-product-card-icon i {
    font-size: 26px;
    color: rgb(6, 216, 137);
}

.erp-product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-saira);
}

.erp-product-tagline {
    color: rgb(6, 216, 137);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.erp-product-short-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.erp-product-features-preview {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.erp-product-features-preview li {
    color: #ccc;
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.erp-product-features-preview li:first-child {
    border-top: none;
}

.erp-product-features-preview li i {
    color: rgb(6, 216, 137);
    font-size: 11px;
    flex-shrink: 0;
}

.erp-product-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.erp-learn-more {
    color: rgb(6, 216, 137);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.erp-product-card:hover .erp-learn-more {
    gap: 14px;
}

.erp-learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.erp-product-card:hover .erp-learn-more i {
    transform: translateX(3px);
}

/* Products CTA */
.erp-products-cta {
    margin-top: 80px;
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #232323;
    border-radius: 16px;
    padding: 60px 40px;
}

.erp-products-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-saira);
}

.erp-products-cta p {
    color: #999;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}


/* =============================================
   SINGLE PRODUCT PAGE
============================================= */

.erp-product-single {
    background: #0a0a0a;
    position: relative;
}

/* Product Hero */
.erp-product-hero {
    margin-bottom: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid #1e1e1e;
}

.erp-product-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--font-saira);
}

.erp-product-hero-desc {
    color: #b5b5b5;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.erp-product-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.erp-product-hero-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.erp-product-hero-icon {
    width: 160px;
    height: 160px;
    background: rgba(6, 216, 137, 0.08);
    border: 2px solid rgba(6, 216, 137, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-product-hero-icon i {
    font-size: 64px;
    color: rgb(6, 216, 137);
}

.erp-product-hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: rgb(6, 216, 137);
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-saira);
}

.hero-stat-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Feature Detail Cards */
.erp-product-features {
    margin-bottom: 100px;
}

.erp-product-features h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-saira);
}

.erp-product-features h2 span {
    color: rgb(6, 216, 137);
}

.erp-feature-detail-card {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.erp-feature-detail-card:hover {
    border-color: rgba(6, 216, 137, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.erp-feature-detail-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(6, 216, 137, 0.15);
    line-height: 1;
    min-width: 55px;
    font-family: var(--font-saira);
}

.erp-feature-detail-card:hover .erp-feature-detail-number {
    color: rgba(6, 216, 137, 0.3);
}

.erp-feature-detail-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-saira);
}

.erp-feature-detail-content p {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Benefits Section */
.erp-product-benefits {
    margin-bottom: 100px;
    padding: 60px 0;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.erp-product-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-saira);
}

.erp-product-benefits h2 span {
    color: rgb(6, 216, 137);
}

.erp-benefits-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.erp-benefits-icon-large {
    width: 140px;
    height: 140px;
    background: rgba(6, 216, 137, 0.08);
    border: 2px solid rgba(6, 216, 137, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-benefits-icon-large i {
    font-size: 56px;
    color: rgb(6, 216, 137);
}

.erp-benefits-badge-count {
    background: rgba(6, 216, 137, 0.1);
    color: rgb(6, 216, 137);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(6, 216, 137, 0.2);
}

.erp-benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.erp-benefit-check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.erp-benefit-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.erp-benefit-check-icon i {
    font-size: 20px;
    color: rgb(6, 216, 137);
}

.erp-benefit-check-item p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Integration Section */
.erp-product-integration {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #232323;
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.erp-product-integration h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-saira);
}

.erp-product-integration > .row > .col-lg-8 > p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.erp-integration-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.erp-integration-module-icon {
    width: 55px;
    height: 55px;
    background: rgba(6, 216, 137, 0.1);
    border: 1px solid rgba(6, 216, 137, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.erp-integration-module-icon:hover {
    background: rgba(6, 216, 137, 0.2);
    transform: scale(1.1);
    text-decoration: none;
}

.erp-integration-module-icon i {
    font-size: 20px;
    color: rgb(6, 216, 137);
}

.erp-integration-more span {
    color: rgb(6, 216, 137);
    font-size: 14px;
    font-weight: 600;
}


/* Product Navigation */
.erp-product-navigation {
    margin-bottom: 60px;
}

.erp-product-nav-link {
    display: block;
    padding: 20px 25px;
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border: 1px solid #232323;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.erp-product-nav-link:hover {
    border-color: rgba(6, 216, 137, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-direction {
    display: block;
    font-size: 12px;
    color: rgb(6, 216, 137);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.nav-direction i {
    font-size: 11px;
}

.nav-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-saira);
}

.erp-product-nav-next {
    text-align: right;
}


/* =============================================
   RESPONSIVE STYLES
============================================= */

@media (max-width: 1199px) {
    .inner-banner-title {
        font-size: 36px;
    }

    .erp-products-intro h2 {
        font-size: 36px;
    }

    .erp-product-hero h1 {
        font-size: 34px;
    }

    .erp-product-features h2,
    .erp-product-benefits h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .inner-banner {
        padding: 120px 0 50px;
    }

    .inner-banner-title {
        font-size: 30px;
    }

    .erp-products-intro h2 {
        font-size: 30px;
    }

    .erp-products-intro {
        margin-bottom: 50px;
    }

    .erp-product-hero {
        margin-bottom: 70px;
    }

    .erp-product-hero h1 {
        font-size: 28px;
    }

    .erp-product-hero-icon-wrap {
        margin-top: 40px;
    }

    .erp-product-features {
        margin-bottom: 70px;
    }

    .erp-product-benefits {
        margin-bottom: 70px;
    }

    .erp-benefits-visual {
        margin-bottom: 40px;
    }

    .erp-product-integration {
        padding: 35px 25px;
    }

    .erp-integration-modules {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .inner-banner-title {
        font-size: 26px;
    }

    .erp-products-intro h2 {
        font-size: 26px;
    }

    .erp-product-hero h1 {
        font-size: 24px;
    }

    .erp-product-hero-actions {
        flex-direction: column;
    }

    .erp-product-hero-actions .erp-cta-btn {
        text-align: center;
    }

    .erp-product-hero-icon {
        width: 120px;
        height: 120px;
    }

    .erp-product-hero-icon i {
        font-size: 48px;
    }

    .erp-feature-detail-card {
        flex-direction: column;
        gap: 10px;
    }

    .erp-feature-detail-number {
        font-size: 30px;
    }

    .erp-product-features h2,
    .erp-product-benefits h2 {
        font-size: 24px;
    }

    .erp-products-cta {
        padding: 40px 20px;
    }

    .erp-products-cta h3 {
        font-size: 24px;
    }

    .nav-title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .erp-product-card {
        padding: 25px 20px;
    }

    .erp-product-hero-stats {
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 28px;
    }
}
