/* products-services.css */

.nh-pds-section {
    padding: 100px 0;
    background-color: #121212;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    border-bottom: 1px solid #222;
}

.nh-pds-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.nh-pds-header {
    text-align: center;
    margin-bottom: 60px;
}

.nh-pds-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border: 1px solid rgba(237, 27, 36, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.nh-pds-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.35 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.nh-pds-subtitle {
    font-size: 17px;
    color: #aaa;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two Column Services Showcase */
.nh-pds-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.nh-pds-service-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nh-pds-service-card:hover {
    border-color: #ED1B24;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.nh-pds-image-wrapper {
    height: 280px;
    overflow: hidden;
    background: #000;
    position: relative;
    border-bottom: 1px solid #2a2a2a;
}

.nh-pds-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nh-pds-service-card:hover .nh-pds-image {
    transform: scale(1.05);
}

.nh-pds-service-info {
    padding: 35px 30px;
}

.nh-pds-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.nh-pds-service-text {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}

/* Capability features */
.nh-pds-features-section {
    margin-bottom: 70px;
}

.nh-pds-features-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;
}

.nh-pds-features-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ED1B24;
    margin: 15px auto 0;
    border-radius: 2px;
}

.nh-pds-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nh-pds-feature-card {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 6px;
    padding: 30px;
    transition: all 0.3s ease;
}

.nh-pds-feature-card:hover {
    border-color: #ED1B24;
    background: rgba(237, 27, 36, 0.02);
    transform: translateY(-5px);
}

.nh-pds-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border-radius: 50%;
    margin-bottom: 20px;
}

.nh-pds-feature-icon svg {
    width: 22px;
    height: 22px;
}

.nh-pds-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.nh-pds-feature-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #999;
    margin: 0;
}

/* CTA */
.nh-pds-cta-wrap {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #181818 0%, #131313 100%);
    border-radius: 8px;
    border: 1px solid #282828;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nh-pds-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.nh-pds-cta-text {
    font-size: 16px;
    color: #aaa;
    margin: 0 0 30px 0;
}

.nh-pds-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    background-color: #25D366;
    color: #ffffff !important;
    border: 2px solid #25D366;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.nh-pds-btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.1);
}

/* Responsive */
@media (max-width: 1199px) {
    .nh-pds-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nh-pds-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nh-pds-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .nh-pds-section {
        padding: 70px 0;
    }
    
    .nh-pds-title {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }

    .nh-pds-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nh-pds-cta-wrap {
        padding: 40px 20px;
    }
    
    .nh-pds-btn-whatsapp {
        width: 100%;
    }
}
