/* Professional Specifications & Package Include Section */

/* Main Container */
.pro-specs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.pro-specs-section .container {
    max-width: 1000px;
}

/* Section Titles */
.pro-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.pro-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #da1884;
    border-radius: 2px;
}

/* Flex Layout */
.pro-specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

/* Card Styling */
.pro-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
    border: 1px solid #eaeaea;
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pro-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.pro-card h3 span {
    font-size: 26px;
}

/* Specifications List */
.pro-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    color: #555;
}

.pro-specs-list li:last-child {
    border-bottom: none;
}

.pro-specs-list li strong {
    color: #333;
    font-weight: 600;
}

/* Package Include Grid */
.pro-package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pro-package-item {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s;
}

.pro-package-item:hover {
    background: #fff5f9;
    border-color: #da1884;
}

.pro-package-item img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

.pro-package-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

/* SVG Icon Styling */
.pro-icon-container {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.pro-svg-icon {
    height: 40px;
    width: auto;
}

/* Responsive SVG */
@media (max-width: 480px) {
    .pro-icon-container {
        height: 50px;
    }

    .pro-svg-icon {
        height: 32px;
    }
}

/* Visual Enhancements */
.pro-card-icon {
    background: #fff1f9;
    color: #da1884;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-specs-grid {
        flex-direction: column;
    }

    .pro-card {
        width: 100%;
    }

    .pro-section-title {
        font-size: 24px;
    }
}