/*-----import-styles-start-----*/
@import url(../global/global.css);
@import url(../layout/header.css);
@import url(../layout/footer.css);
/*-----import-styles-end-----*/

/*-----💡-chapino-hero-section-start-----*/
.chapino-hero-section .hero-title {
    font-size: 2.5rem;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .chapino-hero-section .hero-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 576px) {
    .chapino-hero-section .hero-title {
        font-size: 1.5rem;
    }
}

.chapino-hero-section .hero-divider {
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--secondary-color);
}

.chapino-hero-section .hero-image-box img {
    max-width: 100%;
}

.chapino-hero-section .btn-outline-primary:hover svg path {
    fill: none;
}

/*-----💡-chapino-hero-section-end-----*/

/*-----💡-chapino-features-section-start-----*/
.chapino-features-section {
    position: relative;
    z-index: 2;
}

.chapino-features-section .features-box {
    box-shadow: 6px 4px 70px 8px rgba(12, 101, 143, 0.1);
}

.chapino-features-section .feature-icon {
    background-color: var(--color-custom-gray);
    border-radius: 50%;
    padding: 10px;
}

.chapino-features-section .feature-icon svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .chapino-features-section .feature-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 2px;
        height: 60px;
        background-color: var(--color-custom-gray);
    }
}

/*-----💡-chapino-features-section-end-----*/

/*-----💡-services-section-start-----*/
.services-head p {
    font-size: 18px;
}

@media (max-width: 576px) {
    .services-head h2 {
        font-size: 22px;
    }

    .services-head p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-card:not(:first-child) {
        margin-top: 80px;
    }
}

.services-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    transition: 0.6s ease;
    background-color: var(--primary-color);
}

.services-box h4 {
    font-size: 22px;
    color: var(--color-dark);
}

.services-box p {
    font-size: 16px;
    color: var(--color-light-gray);
}

.services-box {
    border: 1px solid #EEEEEE;
    border-radius: 40px;
    padding: 60px 40px 40px 40px;
    width: 100%;
    height: 100%;
    transition: 0.2s ease-in-out;
    box-shadow: 3px -47px 0 -53px rgba(95, 149, 255, 1);
    -webkit-box-shadow: 3px -47px 0 -53px rgba(95, 149, 255, 1);
    -moz-box-shadow: 3px -47px 0 -53px rgba(95, 149, 255, 1);
}

.services-box:hover {
    transform: translatey(-10px);
    cursor: pointer;
    background-color: var(--primary-color);
    box-shadow: 3px 51px 250px -21px rgba(95, 149, 255, 1);
    -webkit-box-shadow: 3px 51px 250px -21px rgba(95, 149, 255, 1);
    -moz-box-shadow: 3px 51px 250px -21px rgba(95, 149, 255, 1);
}

.services-box:hover .services-icon {
    background-color: var(--secondary-color);
    transform: rotate(360deg);
}

.services-box:hover h4 {
    color: white;
}

.services-box:hover p {
    color: white;
}

/*-----💡-services-section-end-----*/

/*-----💡-chapino-how-section-start-----*/
.chapino-how-section .how-steps {
    border: 1px solid var(--color-custom-gray);
}

.chapino-how-section .how-step-side {
    width: 60px;
}

.chapino-how-section .how-number {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.chapino-how-section .how-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.chapino-how-section .how-icon.bg-primary-soft {
    background-color: var(--primary-color);
}

.chapino-how-section .how-icon.bg-secondary-soft {
    background-color: rgba(243, 114, 33, 0.1);
}

.chapino-how-section .how-icon.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1);
}

.chapino-how-section .how-step-content {
    padding-top: 2px;
}

.chapino-how-section .how-step-content h5 {
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .chapino-how-section .how-step {
        position: relative;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .chapino-how-section .how-step:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 50px;
        height: 6px;
        flex-shrink: 0;
        background-image: radial-gradient(circle, var(--primary-color) 1.6px, transparent 1.7px);
        background-size: 9px 6px;
        background-repeat: repeat-x;
        background-position: center;
    }
}

@media (max-width: 576px) {
    .chapino-how-section .how-step {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }

    .chapino-how-section .how-step:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 50px;
        flex-shrink: 0;
        background-image: radial-gradient(circle, var(--primary-color) 1.6px, transparent 1.7px);
        background-size: 9px 6px;
        background-repeat: repeat-y;
        background-position: center;
    }
}


.chapino-how-section .how-steps-connector {
    position: absolute;
    top: 74px;
    right: 12.5%;
    left: 12.5%;
    border-top: 2px dashed var(--color-custom-gray);
    z-index: 0;
}

/*-----💡-chapino-how-section-end-----*/

/*-----💡-chapino-panels-section-start-----*/
.chapino-panels-section .panel-card {
    border: 1px solid var(--color-custom-gray);
    height: 100%;
}

.chapino-panels-section .panel-card img {
    border-radius: 10px;
}

.chapino-panels-section .swiper {
    padding-bottom: 44px;
}

.chapino-panels-section .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.chapino-panels-section .swiper-button-prev,
.chapino-panels-section .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--color-custom-gray);
    border-radius: 50%;
    box-shadow: 6px 4px 40px 4px rgba(12, 101, 143, 0.1);
    top: 40%;
}

.chapino-panels-section .swiper-button-prev::after,
.chapino-panels-section .swiper-button-next::after {
    font-size: 16px;
    color: var(--primary-color);
}

/*-----💡-chapino-panels-section-end-----*/

/*-----💡-chapino-pricing-section-start-----*/
.chapino-pricing-section .pricing-card {
    border: 1px solid var(--color-custom-gray);
}

.chapino-pricing-section .pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 6px 4px 70px 8px rgba(12, 101, 143, 0.15);
}

.chapino-pricing-section .pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.chapino-pricing-section .pricing-badge svg {
    width: 14px;
    height: 14px;
}

.chapino-pricing-section .pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.chapino-pricing-section .pricing-list li:not(:last-child) {
    margin-bottom: 14px;
}

.chapino-pricing-section .pricing-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.chapino-pricing-section .price-vector img {
    max-width: 120px;
    border-radius: 10px;
    margin-bottom: 16px;
}

/*-----💡-chapino-pricing-section-end-----*/

/*-----💡-chapino-compare-section-start-----*/
.chapino-compare-section .compare-table-wrap {
    border: 1px solid var(--color-custom-gray);
    overflow: hidden;
}

.chapino-compare-section .compare-table {
    margin-bottom: 0;
}

.chapino-compare-section .compare-table thead th {
    background-color: rgba(0, 118, 181, 0.05);
    color: var(--color-dark);
    font-weight: 700;
    padding: 16px;
    border-bottom: 1px solid var(--color-custom-gray);
    white-space: nowrap;
}

.chapino-compare-section .compare-table tbody td {
    padding: 14px 16px;
    color: var(--color-light-gray);
    font-weight: 500;
    border-bottom: 1px solid var(--color-custom-gray);
}

.chapino-compare-section .compare-table tbody tr:last-child td {
    border-bottom: none;
}

.chapino-compare-section .compare-check svg {
    width: 20px;
    height: 20px;
}

.chapino-compare-section .compare-dash {
    color: var(--text-color-gray);
    font-weight: 700;
    font-size: 1.25rem;
}

/*-----💡-chapino-compare-section-end-----*/

/*-----💡-chapino-faq-section-start-----*/
/* هر آیتم به‌صورت یک کارت جدا با فاصله از آیتم بعدی (نه چسبیده به هم مثل حالت پیش‌فرض بوت‌استرپ)
و با رنگ‌های primary/secondary پروژه هماهنگ شده */
.chapino-accordion .accordion-item {
    border: 1px solid var(--color-custom-gray);
    border-radius: 14px !important;
    overflow: hidden;
    background-color: #fff;
    transition: 0.2s;
}

.chapino-accordion .accordion-item + .accordion-item {
    margin-top: 16px;
    border-top: 1px solid var(--color-custom-gray) !important;
}

.chapino-accordion .accordion-button {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none;
    padding: 18px 20px;
    gap: 14px;
}

.chapino-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: none;
}

.chapino-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.chapino-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-custom-gray);
}

.chapino-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%230076B5' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
    margin-right: 0;
    margin-left: 0;
    flex-shrink: 0;
    position: absolute;
    left: 20px;
}

.chapino-accordion .faq-index {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}

.chapino-accordion .accordion-body {
    line-height: 2;
    border-top: 1px solid var(--color-custom-gray);
    padding: 16px 20px 22px 54px;
}

/*-----💡-chapino-faq-section-end-----*/

/*-----💡-chapino-cta-section-start-----*/
.chapino-cta-section .cta-banner {
    background-color: var(--primary-color);
}

.chapino-cta-section .cta-banner img {
    max-width: 150px;
}

.chapino-cta-section .cta-banner .btn-secondary {
    flex-shrink: 0;
}

/*-----💡-chapino-cta-section-end-----*/
