/* Services Section */
.premium-services-section-pro {
    padding: 70px 20px;
    background-color: #eaeaea;
    text-align: center;
}

.service-wrapper-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-box-pro {
    position: relative;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    margin: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-box-pro:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-pro {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-icon-pro:hover {
    transform: scale(1.05);
    filter: grayscale(20%);
}

.service-title-pro {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #003366;
    font-weight: 700; /* Ensure the title stands out */
}

.service-subtitle-pro {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #444;
    font-weight: 600; /* Add more weight for visibility */
}

.service-desc-pro {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    padding: 0 10px;
}

.service-includes-pro {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 25px;
    text-align: left;
    padding: 0 20px;
    list-style: none;
}

.service-includes-pro li::before {
    content: '✓ ';
    margin-right: 5px;
    color: #007bff;
    font-weight: bold;
}

.service-cta-pro {
    display: inline-block;
    padding: 14px 28px;
    background-image: linear-gradient(90deg, #007bff, #0056b3);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-image 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50px;
    font-size: 1.2rem;
}

.service-cta-pro:hover {
    background-image: linear-gradient(90deg, #0056b3, #003f7f);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7f50, #ff4500);
    color: #fff;
    padding: 10px 18px;
    font-size: 1.4rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price-badge:hover {
    transform: scale(1.1) translateX(-50%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-wrapper-pro {
        flex-direction: column;
    }

    .service-box-pro {
        width: 100%;
        margin: 20px 0;
    }

    .service-cta-pro {
        width: 90%;
    }
}

@media (min-width: 769px) {
    .service-wrapper-pro {
        justify-content: center;
    }
}
