/* =========================
   Homepage Hero
========================= */

.tp-hero {
    direction: rtl;
    background: #f5f7f9;
    padding: 72px 24px;
}

.tp-hero__inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 70px;
}

/* Content */

.tp-hero__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #D66A1F;
    font-size: 14px;
    font-weight: 700;
}

.tp-hero__title {
    margin: 0 0 20px;
    max-width: 700px;

    color: #0F2742;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.45;
    font-weight: 800;
}

.tp-hero__text {
    max-width: 650px;
    margin: 0;

    color: #536170;
    font-size: 17px;
    line-height: 2;
}

/* Buttons */

.tp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tp-btn {
    min-height: 46px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.2s ease;
}

.tp-btn--primary {
    background: #D66A1F;
    color: #ffffff;
}

.tp-btn--primary:hover {
    background: #B95515;
    color: #ffffff;
}

.tp-btn--secondary {
    background: #ffffff;
    color: #0F2742;
    border: 1px solid #d7dde3;
}

.tp-btn--secondary:hover {
    border-color: #0F2742;
    color: #0F2742;
}

/* Visual card */

.tp-hero__visual {
    display: flex;
    justify-content: center;
}

.tp-service-card {
    width: 100%;
    max-width: 390px;
    padding: 32px;

    background: #0F2742;
    color: #ffffff;

    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 39, 66, 0.14);
}

.tp-service-card__label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 10px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;

    font-size: 12px;
}

.tp-service-card h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 26px;
}

.tp-service-card ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.tp-service-card li {
    padding: 8px 0;
    color: #d8e0e8;
    font-size: 14px;
}

.tp-service-card li::before {
    content: "✓";
    margin-left: 8px;
    color: #D66A1F;
    font-weight: 800;
}

.tp-service-card a {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tp-service-card a:hover {
    color: #D66A1F;
}


/* =========================
   Hero Mobile
========================= */

@media (max-width: 800px) {

    .tp-hero {
        padding: 48px 18px;
    }

    .tp-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tp-hero__title {
        font-size: 34px;
    }

    .tp-hero__text {
        font-size: 15px;
    }

    .tp-hero__actions {
        flex-direction: column;
    }

    .tp-btn {
        width: 100%;
    }

    .tp-service-card {
        max-width: 100%;
    }
}


/* =========================
   Services
========================= */

.tp-services {
    direction: rtl;
    padding: 90px 24px;
    background: #ffffff;
}

.tp-services__inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* Section Heading */

.tp-section-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.tp-section-heading > span {
    display: block;
    margin-bottom: 10px;

    color: #D66A1F;
    font-size: 14px;
    font-weight: 700;
}

.tp-section-heading h2 {
    margin: 0 0 14px;

    color: #0F2742;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 800;
}

.tp-section-heading p {
    margin: 0;

    color: #65717d;
    font-size: 15px;
    line-height: 2;
}


/* Service */

.tp-service {
    padding: 36px 40px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;

    background: #f5f7f9;
    border: 1px solid #e6e9ed;
    border-radius: 16px;
}

.tp-service__content {
    max-width: 720px;
}

.tp-service__number {
    display: block;
    margin-bottom: 10px;

    color: #D66A1F;
    font-size: 13px;
    font-weight: 800;
}

.tp-service h3 {
    margin: 0 0 12px;

    color: #0F2742;
    font-size: 25px;
    font-weight: 800;
}

.tp-service p {
    margin: 0;

    color: #596673;
    font-size: 15px;
    line-height: 2;
}


/* Tags */

.tp-service__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 20px;
}

.tp-service__tags span {
    padding: 6px 12px;

    background: #ffffff;
    color: #40505f;

    border: 1px solid #e0e4e8;
    border-radius: 20px;

    font-size: 13px;
}


/* Action */

.tp-service__action a {
    min-height: 46px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    background: #0F2742;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.2s ease;
    white-space: nowrap;
}

.tp-service__action a:hover {
    background: #D66A1F;
    color: #ffffff;
}


/* =========================
   Services Mobile
========================= */

@media (max-width: 800px) {

    .tp-services {
        padding: 60px 18px;
    }

    .tp-section-heading {
        margin-bottom: 28px;
    }

    .tp-section-heading h2 {
        font-size: 27px;
    }

    .tp-service {
        padding: 28px 22px;

        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tp-service__action a {
        width: 100%;
        justify-content: center;
    }
}


/* =========================
   Benefits
========================= */

.tp-benefits {
    direction: rtl;
    padding: 90px 24px;
    background: #0F2742;
}

.tp-benefits__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-section-heading--light h2 {
    color: #ffffff;
}

.tp-section-heading--light p {
    color: #c9d3dc;
}

.tp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tp-benefit-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: 0.2s ease;
}

.tp-benefit-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

.tp-benefit-card__number {
    display: block;
    margin-bottom: 22px;

    color: #D66A1F;
    font-size: 13px;
    font-weight: 800;
}

.tp-benefit-card h3 {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.tp-benefit-card p {
    margin: 0;

    color: #c9d3dc;
    font-size: 14px;
    line-height: 2;
}


/* =========================
   Benefits Tablet
========================= */

@media (max-width: 950px) {

    .tp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   Benefits Mobile
========================= */

@media (max-width: 600px) {

    .tp-benefits {
        padding: 60px 18px;
    }

    .tp-benefits__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tp-benefit-card {
        padding: 24px 20px;
    }
} 


/* =========================
   Service Areas
========================= */

.tp-areas {
    direction: rtl;
    padding: 90px 24px;
    background: #ffffff;
}

.tp-areas__inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}


/* Content */

.tp-areas__eyebrow {
    display: block;
    margin-bottom: 10px;

    color: #D66A1F;
    font-size: 14px;
    font-weight: 700;
}

.tp-areas__content h2 {
    margin: 0 0 16px;

    color: #0F2742;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 800;
}

.tp-areas__content p {
    margin: 0;

    color: #65717d;
    font-size: 15px;
    line-height: 2;
}

.tp-areas__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 24px;

    color: #0F2742;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tp-areas__contact:hover {
    color: #D66A1F;
}


/* Areas */

.tp-areas__list {
    border-top: 1px solid #e4e8ec;
}

.tp-area {
    min-height: 82px;
    padding: 18px 4px;

    display: grid;
    grid-template-columns: 45px 130px 1fr;
    align-items: center;
    gap: 16px;

    border-bottom: 1px solid #e4e8ec;
}

.tp-area__number {
    color: #D66A1F;
    font-size: 12px;
    font-weight: 800;
}

.tp-area strong {
    color: #0F2742;
    font-size: 16px;
}

.tp-area > span:last-child {
    color: #73808c;
    font-size: 14px;
}


/* =========================
   Areas Mobile
========================= */

@media (max-width: 800px) {

    .tp-areas {
        padding: 60px 18px;
    }

    .tp-areas__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp-areas__content h2 {
        font-size: 27px;
    }

    .tp-area {
        grid-template-columns: 32px 1fr;
        gap: 8px 12px;
    }

    .tp-area > span:last-child {
        grid-column: 2;
    }
}


/* =========================
   Service Process
========================= */

.tp-process {
    direction: rtl;
    padding: 90px 24px;
    background: #f5f7f9;
}

.tp-process__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.tp-process-step {
    position: relative;
    padding: 30px 26px;
    background: #ffffff;
    border-top: 3px solid #0F2742;
    border-left: 1px solid #e6e9ed;
}

.tp-process-step:first-child {
    border-radius: 0 12px 12px 0;
}

.tp-process-step:last-child {
    border-left: 0;
    border-radius: 12px 0 0 12px;
}

.tp-process-step__number {
    display: block;
    margin-bottom: 28px;

    color: #D66A1F;
    font-size: 13px;
    font-weight: 800;
}

.tp-process-step h3 {
    margin: 0 0 10px;

    color: #0F2742;
    font-size: 18px;
    font-weight: 800;
}

.tp-process-step p {
    margin: 0;

    color: #65717d;
    font-size: 14px;
    line-height: 2;
}


/* =========================
   Process Tablet
========================= */

@media (max-width: 900px) {

    .tp-process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tp-process-step,
    .tp-process-step:first-child,
    .tp-process-step:last-child {
        border: 1px solid #e6e9ed;
        border-top: 3px solid #0F2742;
        border-radius: 10px;
    }
}


/* =========================
   Process Mobile
========================= */

@media (max-width: 600px) {

    .tp-process {
        padding: 60px 18px;
    }

    .tp-process__steps {
        grid-template-columns: 1fr;
    }

    .tp-process-step {
        padding: 24px 20px;
    }

    .tp-process-step__number {
        margin-bottom: 16px;
    }
}


/* =========================
   Final CTA
========================= */

.tp-final-cta {
    direction: rtl;
    padding: 70px 24px;
    background: #ffffff;
}

.tp-final-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px 50px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;

    background: #0F2742;
    border-radius: 18px;
}

.tp-final-cta__content {
    max-width: 700px;
}

.tp-final-cta__content > span {
    display: block;
    margin-bottom: 10px;

    color: #D66A1F;
    font-size: 14px;
    font-weight: 700;
}

.tp-final-cta__content h2 {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 800;
}

.tp-final-cta__content p {
    margin: 0;

    color: #c9d3dc;
    font-size: 14px;
    line-height: 2;
}


/* Actions */

.tp-final-cta__actions {
    display: flex;
    gap: 10px;
}

.tp-final-cta__primary,
.tp-final-cta__secondary {
    min-height: 46px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;

    transition: 0.2s ease;
}

.tp-final-cta__primary {
    background: #D66A1F;
    color: #ffffff;
}

.tp-final-cta__primary:hover {
    background: #B95515;
    color: #ffffff;
}

.tp-final-cta__secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.tp-final-cta__secondary:hover {
    background: #ffffff;
    color: #0F2742;
}


/* =========================
   Final CTA Mobile
========================= */

@media (max-width: 800px) {

    .tp-final-cta {
        padding: 50px 18px;
    }

    .tp-final-cta__inner {
        padding: 34px 24px;

        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tp-final-cta__content h2 {
        font-size: 24px;
    }

    .tp-final-cta__actions {
        flex-direction: column;
    }

    .tp-final-cta__primary,
    .tp-final-cta__secondary {
        width: 100%;
    }
}