/* Services Hero Section */
.services-hero {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 4rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }
}

/* Main Services Section */
.main-services {
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: white;
    border-radius: 1rem;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .main-services,
    .why-choose-us,
    .cta-section {
        padding: 4rem 1rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .why-choose-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-container p {
        font-size: 1.1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Existing Services Pricing Styles */
.services-pricing-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.services-pricing-header {
    margin-bottom: 4rem;
}

.services-pricing-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-pricing-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 350px));
    gap: 2rem;
    margin: auto;
    justify-content: center;
    align-items: start;
}

.services-pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-pricing-card:hover {
    transform: translateY(-10px);
}

.services-pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(142, 57, 206, 0.1);
}

.services-popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.services-pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.services-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.services-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.services-pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex: 1;
}

.services-pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.services-pricing-card ul li i {
    color: var(--primary-color);
}

.services-pricing-card ul li.not-included {
    color: #a3a3a3;

}

.services-pricing-card ul li.not-included i {
    color: var(--text-secondary);
}

.services-pricing-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.services-pricing-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media screen and (max-width: 1200px) {
    .services-pricing-grid {
        grid-template-columns: repeat(3, minmax(250px, 300px));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .services-pricing-section {
        min-height: auto;
        padding: 4rem 1rem;
    }

    .services-pricing-header h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .services-pricing-header p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .services-pricing-grid {
        grid-template-columns: minmax(280px, 400px);
        gap: 2rem;
    }

    .services-pricing-card {
        padding: 2rem 1.5rem;
    }
}