/* Services Page Styles */

.services-page {
    margin-top: 60px;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    min-height: 100vh;
}

.services-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}


/* Service Card Base Styles */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}


/* Service Header */

.service-header {
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}


/* Service Content */

.service-content {
    padding: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.service-content p {
    margin-bottom: 0px;
}

.service-content p:last-child {
    margin-bottom: 0;
}


/* Lists Styling */

.service-features,
.achievement-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li,
.achievement-list li,
.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.service-features li:before,
.achievement-list li:before,
.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.service-features li:last-child,
.achievement-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}


/* Ordered List for Guarantee */

.guarantee-list {
    counter-reset: guarantee-counter;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.guarantee-list>li {
    counter-increment: guarantee-counter;
}

.guarantee-list li {
    margin-bottom: 30px;
    padding: 25px;
    padding-left: 36px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    position: relative;
}

.guarantee-list li:before {
    content: counter(guarantee-counter);
    position: absolute;
    top: 20px;
    left: -20px;
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.guarantee-list li ul {
    margin-top: 15px;
    padding-left: 20px;
}

.guarantee-list li ul li {
    background: none;
    border: none;
    padding: 8px 0;
    margin: 0;
    list-style: disc;
}

.guarantee-list li ul li:before {
    display: none;
}


/* Special Card Variants */

.highlight-card .service-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.compact-card .service-content {
    padding: 30px 40px;
}

.pricing-card .service-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.pricing-card {
    margin-bottom: 60px;
}


/* Pricing Highlight */

.pricing-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-note {
    font-size: 16px;
    opacity: 0.8;
}


/* Responsive Design */

@media (max-width: 768px) {
    .services-page {
        /* padding: 40px 0; */
    }
    .services-container {
        gap: 30px;
    }
    .service-header {
        padding: 30px 25px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .service-title {
        font-size: 24px;
    }
    .service-content {
        padding: 30px 25px;
        font-size: 15px;
    }
    .guarantee-list li {
        /* padding: 20px 15px; */
        margin-left: 10px;
    }
    .price {
        font-size: 36px;
    }
    .pricing-highlight {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 25px 20px 15px;
    }
    .service-title {
        font-size: 20px;
    }
    .service-content {
        padding: 25px 20px;
        font-size: 14px;
    }
    .service-icon {
        width: 50px;
        height: 50px;
    }
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
}


/* Animation for cards appearing */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}


/* Enhanced Pricing CTA */

.pricing-cta {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.pricing-cta:hover::before {
    left: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

.cta-subtext {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(-1px);
}


/* CTA Icon */

.cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .cta-icon {
    transform: translateX(3px);
}


/* Additional CTA Features */

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.cta-feature-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}


/* Responsive CTA */

@media (max-width: 768px) {
    .pricing-cta {
        margin-top: 30px;
        padding: 25px 20px;
    }
    .cta-headline {
        font-size: 20px;
    }
    .cta-subtext {
        font-size: 15px;
    }
    .btn {
        padding: 14px 14px;
        font-size: 14px;
    }
    .cta-features {
        gap: 20px;
        margin-top: 15px;
    }
    .cta-feature {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}