@charset "UTF-8";

body {
    font-family: "Geeza Pro", "Noto Naskh Arabic", "Droid Arabic Naskh", Arial, sans-serif;
}

.page-heading {
    padding: 2.5rem 1rem 2.2rem;
}

.page-heading h1 {
    font-weight: 700;
}

/* Utilities */

.panel-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .078);
}

.p-24 {
    padding: 1.5rem;
}

/* Service Price */

.service-price {
    margin: 2rem 0 0;
}

.service-price-card {
    border-top: 4px solid #0055aa;
}

.service-price-label {
    font-size: .75rem;
    font-weight: 600;
    color: #6c737f;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 .75rem;
}

.service-price-amount {
    margin: 0 0 1rem;
}

.service-price-amount strong {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0055aa;
    letter-spacing: -.01em;
}

.service-price-text {
    font-size: .875rem;
    color: #565b66;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid #e9ecef;
    padding-top: .9rem;
}

/* WhatsApp Float */

.whatsapp-float {
    position: fixed;
    bottom: 1.4rem;
    right: 1.2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1rem 0.6rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    flex-shrink: 0;
}

/* FAQ */

.faq {
    margin: 3.5rem 0 0;
}

.faq-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-question {
    font-size: .95rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    line-height: 1.5;
}

.faq-answer {
    font-size: .875rem;
    color: #565b66;
    margin: 0;
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    line-height: 1.7;
    padding-top: 0.35rem;
    border-top: 1px solid #f0f2f5;
}

.faq-label {
    color: #0055aa;
    font-weight: 700;
    flex-shrink: 0;
}

/* Process Steps */

.process-steps {
    margin: 2rem 0 0;
}

.section-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.section-heading-spaced {
    margin-bottom: 1.1rem;
}

.process-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    counter-reset: step-counter;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    counter-increment: step-counter;
}

.process-step-item::before {
    content: counter(step-counter);
    min-width: 32px;
    height: 32px;
    background-color: #0055aa;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-step-title {
    font-size: .95rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 .3rem;
}

.process-step-text {
    font-size: .875rem;
    color: #565b66;
    margin: 0;
    line-height: 1.6;
}

.service-list a.service-item {
    text-decoration: none;
}

.logo-link svg {
    fill: #232323;
}

.service-list .item-title {
    color: #212529;
}

.service-list .service-item a {
    text-decoration: none;
}

.start-btn-wrap .btn {
    max-width: 190px;
}