/* Inner pages — content layout; header same transparent band as home */

/* ── About page ── */
body.jat-about-page #main-wrap {
    padding-top: 0 !important;
    background-color: #132b1b;
}

body.jat-about-page .jat-about-section {
    position: relative;
    background-color: #132b1b;
    background-image: url('../images/2024/07/slider-2-2.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(var(--jat-header-height, 90px) + 24px) 0 72px;
}

body.jat-about-page .jat-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 43, 27, 0.82);
    pointer-events: none;
}

body.jat-about-page .jat-about-section > .jat-hero-breadcrumb-bar,
body.jat-about-page .jat-about-section > .jat-about-inner {
    position: relative;
    z-index: 1;
}

body.jat-about-page .jat-hero-breadcrumb-bar {
    padding-top: 0 !important;
    padding-bottom: 28px !important;
}

body.jat-about-page .jat-about-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 56px;
}

body.jat-about-page .jat-about-block {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

body.jat-about-page .jat-about-block--reverse {
    direction: ltr;
}

body.jat-about-page .jat-about-block--reverse > * {
    direction: rtl;
}

body.jat-about-page .jat-about-block__media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(219, 196, 152, 0.15);
}

body.jat-about-page .jat-about-block__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

body.jat-about-page .jat-about-block__content {
    padding: clamp(8px, 2vw, 20px) 0;
}

body.jat-about-page .jat-about-block__title {
    margin: 0 0 16px;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

body.jat-about-page .jat-about-block__text {
    margin: 0;
    color: #f0e6d4;
    font-family: "El Messiri", sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.85;
    opacity: 0.95;
}

.jat-about-stats {
    padding: 8px 0;
}

body.home .jat-about-stats {
    padding: 0;
}

.jat-about-stats__heading {
    margin: 0 0 28px;
    text-align: center;
    color: #dbc498;
    font-family: "El Messiri", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 600;
}

.jat-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 28px);
}

.jat-stat-card,
.jat-about-stats__card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 32px 24px 28px;
    text-align: center;
    background: linear-gradient(145deg, rgba(8, 24, 14, 0.95) 0%, rgba(19, 43, 27, 0.88) 100%);
    border: 1px solid rgba(219, 196, 152, 0.32);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.jat-stat-card:hover,
.jat-about-stats__card:hover {
    transform: translateY(-3px);
    border-color: rgba(219, 196, 152, 0.55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.jat-stat-card__icon,
.jat-about-stats__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #132b1b;
    background: linear-gradient(135deg, #dbc498 0%, #c4a574 100%);
    box-shadow: 0 6px 18px rgba(219, 196, 152, 0.3);
}

.jat-stat-card__number,
.jat-about-stats__number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
    line-height: 1;
}

.jat-stat-card__value,
.jat-about-stats__value {
    font-family: "Almarai", sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #dbc498;
}

.jat-stat-card__suffix,
.jat-about-stats__suffix {
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #dbc498;
}

.jat-stat-card__label,
.jat-about-stats__label {
    margin: 0;
    font-family: "El Messiri", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5ead8;
}

@media (max-width: 991.98px) {
    body.jat-about-page .jat-about-section {
        padding-top: calc(var(--jat-header-height, 60px) + 16px);
        padding-bottom: 48px;
    }

    body.jat-about-page .jat-about-inner {
        gap: 40px;
    }

    body.jat-about-page .jat-about-block,
    body.jat-about-page .jat-about-block--reverse {
        grid-template-columns: 1fr;
        direction: rtl;
    }

    body.jat-about-page .jat-about-block__media {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    body.jat-about-page .jat-about-inner {
        gap: 32px;
    }

    .jat-about-stats__grid {
        grid-template-columns: 1fr;
    }

    .jat-stat-card,
    .jat-about-stats__card {
        padding: 26px 20px 24px;
    }
}

/* Blog/article — small hero band behind header */
body.jat-blog-page .jat-header-backdrop-band,
body.jat-article-page .jat-header-backdrop-band {
    display: block;
    width: 100%;
    height: calc(var(--jat-header-height, 90px) + 48px);
    min-height: 130px;
    background-color: #112a1a;
    background-image: url('../images/2024/07/slider-2-2.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.jat-blog-page .jat-article-breadcrumb-bar.jat-page-breadcrumb-bar,
body.jat-article-page .jat-article-breadcrumb-bar.jat-page-breadcrumb-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #f7f9f8 !important;
    background-image: none !important;
    border-bottom: 1px solid #e3e8e5 !important;
    padding: 14px 0;
}

@media (max-width: 991.98px) {
    body.jat-blog-page .jat-header-backdrop-band,
    body.jat-article-page .jat-header-backdrop-band {
        min-height: 100px;
        height: calc(var(--jat-header-height, 60px) + 32px);
    }
}

/* ── Services page — clean grid layout ── */
body.jat-services-page #main-wrap {
    background-color: #112a1a;
    padding-top: 0 !important;
}

body.jat-services-page .jat-services-section {
    position: relative;
    background-color: #112a1a;
    background-image: url('../images/2024/07/slider-2-2.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(var(--jat-header-height, 90px) + 32px) 0 60px;
    margin-top: 0;
}

body.jat-services-page .jat-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 42, 26, 0.72);
    pointer-events: none;
}

body.jat-services-page .jat-services-section > .jat-hero-breadcrumb-bar,
body.jat-services-page .jat-services-inner {
    position: relative;
    z-index: 1;
}

body.jat-services-page .jat-hero-breadcrumb-bar {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
}

body.jat-services-page .jat-hero-breadcrumb-bar .container {
    max-width: 100% !important;
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
}

body.jat-services-page .jat-services-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(20px, 5vw, 64px);
}

body.jat-services-page .jat-services-page-title {
    margin: 0 0 36px;
    padding: 0;
    text-align: center;
    color: #dbc498;
    font-family: "El Messiri", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.3;
}

body.jat-services-page .jat-services-intro {
    margin: -12px auto 36px;
    max-width: 720px;
    text-align: center;
    color: #f0e6d4;
    font-family: "El Messiri", sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.92;
}

body.jat-services-page .jat-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
    align-items: stretch;
}

body.jat-services-page .jat-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px 28px;
    border-radius: 8px;
    background: rgba(19, 43, 27, 0.35);
    border: 1px solid rgba(219, 196, 152, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.jat-services-page .jat-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(219, 196, 152, 0.28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

body.jat-services-page .jat-service-card__image {
    width: 100%;
    max-width: 281px;
    margin: 0 auto 14px;
}

body.jat-services-page .jat-service-card__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 281px;
    margin: 0 auto;
    object-fit: contain;
}

body.jat-services-page .jat-service-card__title {
    margin: 0 0 8px;
    padding: 0;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.625rem);
    font-weight: 500;
    line-height: 1.35;
}

body.jat-services-page .jat-service-card__excerpt {
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
    color: #dbc498;
    font-family: "El Messiri", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.92;
}

body.jat-services-page .jat-service-card__btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 24px;
    background-color: #dbc498;
    color: #000;
    font-family: "El Messiri", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

body.jat-services-page .jat-service-card__btn:hover {
    background-color: #e8d4b0;
    color: #000;
}

@media (max-width: 1024px) {
    body.jat-services-page .jat-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    body.jat-services-page .jat-services-section {
        padding-top: calc(var(--jat-header-height, 60px) + 20px);
        padding-bottom: 40px;
    }

    body.jat-services-page .jat-services-inner {
        padding-top: 0;
    }

    body.jat-services-page .jat-services-page-title {
        margin-bottom: 28px;
    }

    body.jat-services-page .jat-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.jat-services-page .jat-service-card {
        padding: 20px 16px 24px;
    }
}

/* ── Service detail pages ── */
body.jat-service-detail-page #main-wrap {
    background-color: #112a1a;
    padding-top: 0 !important;
}

body.jat-service-detail-page .jat-service-detail-section {
    position: relative;
    background-color: #112a1a;
    background-image: url('../images/2024/07/slider-2-2.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(var(--jat-header-height, 90px) + 24px) 0 72px;
}

body.jat-service-detail-page .jat-service-detail-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 42, 26, 0.78);
    pointer-events: none;
}

body.jat-service-detail-page .jat-service-detail-section > .jat-hero-breadcrumb-bar,
body.jat-service-detail-page .jat-service-detail-inner {
    position: relative;
    z-index: 1;
}

body.jat-service-detail-page .jat-hero-breadcrumb-bar {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
}

body.jat-service-detail-page .jat-hero-breadcrumb-bar .container {
    max-width: 100% !important;
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
}

body.jat-service-detail-page .jat-service-detail-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(20px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

body.jat-service-detail-page .jat-service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(19, 43, 27, 0.55);
    border: 1px solid rgba(219, 196, 152, 0.2);
}

body.jat-service-detail-page .jat-service-detail-hero__title {
    margin: 0 0 14px;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.35;
}

body.jat-service-detail-page .jat-service-detail-hero__lead {
    margin: 0 0 18px;
    color: #f0e6d4;
    font-family: "El Messiri", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

body.jat-service-detail-page .jat-service-detail-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 6px;
    background: #dbc498;
    color: #132b1b;
    font-family: "Almarai", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

body.jat-service-detail-page .jat-service-detail-hero__cta:hover {
    background: #e8d4b0;
    color: #132b1b;
    transform: translateY(-1px);
}

body.jat-service-detail-page .jat-service-detail-hero__media {
    flex-shrink: 0;
}

body.jat-service-detail-page .jat-service-detail-hero__media img {
    display: block;
    width: clamp(160px, 16vw, 300px);
    height: auto;
    object-fit: contain;
}

body.jat-service-detail-page .jat-service-detail-body {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    color: #2d3b32;
    font-family: "El Messiri", sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

body.jat-service-detail-page .jat-service-detail-body__label {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(19, 43, 27, 0.12);
    color: #112a1a;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-seo {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(19, 43, 27, 0.72);
    border: 1px solid rgba(219, 196, 152, 0.28);
}

body.jat-service-detail-page .jat-service-seo__title {
    margin: 0 0 16px;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-seo__text {
    margin: 0 0 14px;
    color: #f0e6d4;
    font-family: "El Messiri", sans-serif;
    font-size: 1.02rem;
    line-height: 1.85;
}

body.jat-service-detail-page .jat-service-seo__text:last-of-type {
    margin-bottom: 18px;
}

body.jat-service-detail-page .jat-service-seo__text strong {
    color: #dbc498;
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-seo__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jat-service-detail-page .jat-service-seo__keyword {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(219, 196, 152, 0.15);
    border: 1px solid rgba(219, 196, 152, 0.35);
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
}

body.jat-service-detail-page .jat-service-trust {
    padding: 0;
}

body.jat-service-detail-page .jat-service-trust__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.jat-service-detail-page .jat-service-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(219, 196, 152, 0.2);
    text-align: center;
}

body.jat-service-detail-page .jat-service-trust__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbc498 0%, #c4a574 100%);
    color: #132b1b;
    font-size: 1.1rem;
}

body.jat-service-detail-page .jat-service-trust__label {
    color: #f5ead8;
    font-family: "Almarai", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
}

body.jat-service-detail-page .jat-service-related {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(19, 43, 27, 0.55);
    border: 1px solid rgba(219, 196, 152, 0.22);
}

body.jat-service-detail-page .jat-service-related__title {
    margin: 0 0 20px;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    text-align: center;
}

body.jat-service-detail-page .jat-service-related__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.jat-service-detail-page .jat-service-related__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(8, 24, 14, 0.5);
    border: 1px solid rgba(219, 196, 152, 0.18);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

body.jat-service-detail-page .jat-service-related__card:hover {
    border-color: rgba(219, 196, 152, 0.45);
    transform: translateY(-2px);
}

body.jat-service-detail-page .jat-service-related__img {
    width: 56px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

body.jat-service-detail-page .jat-service-related__name {
    flex: 1;
    color: #f5ead8;
    font-family: "Almarai", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

body.jat-service-detail-page .jat-service-related__arrow {
    color: #dbc498;
    font-size: 1.1rem;
}

body.jat-service-detail-page .jat-service-detail-body p {
    margin: 0 0 1.1rem;
    color: #2d3b32;
}

body.jat-service-detail-page .jat-service-detail-body p:last-child {
    margin-bottom: 0;
}

body.jat-service-detail-page .jat-service-process {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(19, 43, 27, 0.65);
    border: 1px solid rgba(219, 196, 152, 0.25);
}

body.jat-service-detail-page .jat-service-process__title {
    margin: 0 0 28px;
    text-align: center;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

body.jat-service-detail-page .jat-service-process__step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 16px;
    border-radius: 12px;
    background: rgba(8, 24, 14, 0.55);
    border: 1px solid rgba(219, 196, 152, 0.15);
}

body.jat-service-detail-page .jat-service-process__step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbc498 0%, #c4a574 100%);
    color: #132b1b;
    font-family: "Almarai", sans-serif;
    font-weight: 800;
    font-size: 1rem;
}

body.jat-service-detail-page .jat-service-process__step-title {
    margin: 0 0 6px;
    color: #f5ead8;
    font-family: "Almarai", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-process__step-text {
    margin: 0;
    color: #e8dcc8;
    font-family: "El Messiri", sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.95;
}

body.jat-service-detail-page .jat-service-faq {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

body.jat-service-detail-page .jat-service-faq__title {
    margin: 0 0 20px;
    color: #112a1a;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.55rem);
    font-weight: 700;
}

body.jat-service-detail-page .jat-service-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.jat-service-detail-page .jat-service-faq__item {
    border: 1px solid #e3e8e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

body.jat-service-detail-page .jat-service-faq__question {
    padding: 16px 44px 16px 18px;
    cursor: pointer;
    color: #112a1a;
    font-family: "Almarai", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    position: relative;
}

body.jat-service-detail-page .jat-service-faq__question::-webkit-details-marker {
    display: none;
}

body.jat-service-detail-page .jat-service-faq__question::after {
    content: "+";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #132b1b;
    color: #dbc498;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

body.jat-service-detail-page .jat-service-faq__item[open] .jat-service-faq__question::after {
    content: "−";
}

body.jat-service-detail-page .jat-service-faq__answer {
    padding: 0 18px 16px;
    color: #2d3b32;
    font-family: "El Messiri", sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
}

body.jat-service-detail-page .jat-service-faq__answer a {
    color: #1c512e;
    font-weight: 600;
}

body.jat-service-detail-page .jat-service-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 16px;
    background: linear-gradient(135deg, #dbc498 0%, #c4a574 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

body.jat-service-detail-page .jat-service-cta__title {
    margin: 0 0 8px;
    color: #132b1b;
    font-family: "Almarai", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
}

body.jat-service-detail-page .jat-service-cta__text {
    margin: 0;
    color: #1a3324;
    font-family: "El Messiri", sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: none;
}

body.jat-service-detail-page .jat-service-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    background: #132b1b;
    color: #dbc498;
    font-family: "Almarai", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

body.jat-service-detail-page .jat-service-cta__btn:hover {
    background: #0f2216;
    color: #e8d4b0;
    transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
    body.jat-service-detail-page .jat-service-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.jat-service-detail-page .jat-service-trust__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body.jat-service-detail-page .jat-service-detail-section {
        padding-top: calc(var(--jat-header-height, 60px) + 16px);
        padding-bottom: 48px;
    }

    body.jat-service-detail-page .jat-service-detail-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.jat-service-detail-page .jat-service-detail-hero__media img {
        margin: 0 auto;
    }

    body.jat-service-detail-page .jat-service-process__steps {
        grid-template-columns: 1fr;
    }

    body.jat-service-detail-page .jat-service-trust__list {
        grid-template-columns: 1fr 1fr;
    }

    body.jat-service-detail-page .jat-service-related__grid {
        grid-template-columns: 1fr;
    }

    body.jat-service-detail-page .jat-service-cta {
        flex-direction: column;
        text-align: center;
    }

    body.jat-service-detail-page .jat-service-cta__btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Contact + privacy — clear fixed header */
@media (min-width: 992px) {
    body.elementor-page-20229 .elementor-element-1b70abc,
    body.elementor-page-20061 .elementor-element-1b70abc {
        padding-top: calc(var(--jat-header-height, 90px) + 24px) !important;
    }
}

/* Blog listing content area */
body.jat-blog-page .jat-blog-section {
    background: #fff;
}

/* Article content area */
body.jat-article-page .jat-article-body,
body.jat-article-page .jat-article-inner {
    background: #fff;
}

/* ── Blog listing cards ── */
body.jat-blog-page .elementor-20338 .elementor-posts-container.elementor-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px 30px;
}

@media (max-width: 1024px) {
    body.jat-blog-page .elementor-20338 .elementor-posts-container.elementor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.jat-blog-page .elementor-20338 .elementor-posts-container.elementor-grid {
        grid-template-columns: 1fr;
    }
}

body.jat-blog-page .elementor-20338 .elementor-post.elementor-grid-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.jat-blog-page .elementor-20338 .elementor-posts-container .elementor-post__thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66% !important;
    overflow: hidden;
}

body.jat-blog-page .elementor-20338 .elementor-posts-container .elementor-post__thumbnail img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.jat-blog-page .elementor-20338 .elementor-element-f1e68df.elementor-posts--thumbnail-top .elementor-post__thumbnail__link {
    margin-bottom: 0 !important;
    display: block;
    flex-shrink: 0;
}

body.jat-blog-page .elementor-20338 .elementor-post__text {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.jat-blog-page .elementor-20338 .elementor-post__title {
    margin: 0 !important;
    min-height: 3.2em;
    line-height: 1.6;
}

body.jat-blog-page .elementor-20338 .elementor-post__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Breadcrumb ── */
body.jat-article-page .jat-article-breadcrumb-bar .container,
body.jat-blog-page .jat-article-breadcrumb-bar .container {
    margin-top: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Breadcrumb on other dark inner pages (blog/article have hero backdrop above) */
body:not(.jat-blog-page):not(.jat-article-page) .jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) {
    background-color: #112a1a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Breadcrumb inside hero band (about) */
.jat-hero-breadcrumb-bar {
    background: transparent !important;
    border-bottom: none !important;
    padding: 18px 0 6px !important;
    position: relative;
    z-index: 5;
    width: 100%;
}

.jat-hero-breadcrumb-bar .container {
    margin-top: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

.jat-hero-breadcrumb-bar .breadcrumb-item a {
    color: #bdb290 !important;
}

.jat-hero-breadcrumb-bar .breadcrumb-item a:hover {
    color: #ffffff !important;
}

.jat-hero-breadcrumb-bar .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9) !important;
}

.jat-hero-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Dark breadcrumb text — all inner pages including blog/article */
body .jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) .breadcrumb-item a {
    color: #bdb290 !important;
    text-decoration: none;
    font-weight: 600;
}

body .jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) .breadcrumb-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

body .jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
}

body .jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.35rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.jat-article-breadcrumb-bar:not(.jat-hero-breadcrumb-bar) .container {
    margin-top: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

body.jat-article-page .jat-article-breadcrumb-bar .container,
body.jat-blog-page .jat-article-breadcrumb-bar .container {
    max-width: 100%;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

body.jat-article-page .jat-article-breadcrumb,
body.jat-blog-page .jat-article-breadcrumb {
    margin: 0;
    padding: 0;
    border: 0;
}

body.jat-article-page .jat-article-breadcrumb .breadcrumb,
body.jat-blog-page .jat-article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 6px;
}

/* Light breadcrumb bar — blog & article */
body.jat-blog-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
body.jat-article-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.35rem;
    color: #9aa89f;
}

body.jat-blog-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item a,
body.jat-article-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item a {
    color: #1c512e !important;
    text-decoration: none;
    font-weight: 600;
}

body.jat-blog-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item a:hover,
body.jat-article-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item a:hover {
    color: #0f3d24 !important;
    text-decoration: underline;
}

body.jat-blog-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item.active,
body.jat-article-page .jat-page-breadcrumb-bar .jat-article-breadcrumb .breadcrumb-item.active {
    color: #112a1a !important;
    font-weight: 500;
}

body.jat-article-page #colophon,
body.jat-blog-page #colophon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 5;
    width: 100%;
    clear: both;
    margin-top: 0;
}

body.jat-article-page .footer-width-fixer,
body.jat-article-page #colophon .elementor-19476,
body.jat-blog-page .footer-width-fixer,
body.jat-blog-page #colophon .elementor-19476 {
    width: 100%;
}

/* ── Blog listing page layout ── */
body.jat-blog-page .jat-blog-section {
    width: 100%;
    background: #fff;
}

body.jat-blog-page .jat-blog-inner {
    width: 100%;
    max-width: 100%;
    padding: 36px clamp(20px, 5vw, 64px) 56px;
    margin: 0;
    background: #fff;
}

body.jat-blog-page .elementor-20338 .elementor-element-1b70abc {
    background-image: none !important;
    background-color: #fff !important;
    padding: 0 !important;
    min-height: 0 !important;
}

body.jat-blog-page .elementor-20338 .elementor-element-4ac9d05 {
    display: none !important;
}

body.jat-blog-page .elementor-20338 .elementor-element-5721fdc,
body.jat-blog-page .elementor-20338 .elementor-element-5721fdc > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.jat-blog-page .elementor-20338 .elementor-element-5721fdc > .elementor-container,
body.jat-blog-page .elementor-20338 .elementor-element-eca3610 > .elementor-element-populated {
    padding: 0 !important;
}

body.jat-blog-page .elementor-20338 .elementor-element-5917426 .elementor-heading-title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    line-height: 1.45;
    color: #112a1a;
    text-align: right;
    font-weight: 700;
    margin-bottom: 32px;
}

body.jat-blog-page .elementor-20338 .elementor-post.elementor-grid-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e3e8e5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

body.jat-blog-page .elementor-20338 .elementor-post.elementor-grid-item:hover {
    box-shadow: 0 8px 24px rgba(17, 42, 26, 0.1);
    transform: translateY(-2px);
}

body.jat-blog-page .elementor-20338 .elementor-post__text {
    padding: 16px 18px 20px !important;
}

body.jat-blog-page .elementor-20338 .elementor-post__title a {
    color: #112a1a !important;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ── Article detail page ── */
body.jat-article-page .jat-article-section {
    padding: 0;
    background: #fff;
}

body.jat-article-page .jat-article-container {
    max-width: 100%;
    padding: 0;
}

body.jat-article-page .jat-article-body {
    width: 100%;
}

body.jat-article-page .jat-article-inner {
    width: 100%;
    max-width: 100%;
    padding: 36px clamp(20px, 5vw, 64px) 56px;
    margin: 0;
    background: #fff;
}

body.jat-article-page .single-article-wrap {
    width: 100%;
    max-width: 100%;
}

body.jat-article-page .single-article-wrap .post-header-wrap {
    margin-bottom: 28px;
    text-align: right;
}

body.jat-article-page .single-article-wrap .post-title-wrap h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    line-height: 1.45;
    margin-bottom: 14px;
    color: #112a1a;
    font-weight: 700;
}

body.jat-article-page .single-article-wrap .author-meta {
    justify-content: flex-start;
    color: #6b7c72;
    font-size: 14px;
}

body.jat-article-page .single-article-wrap .post-thumbnail-wrap {
    margin-bottom: 36px;
    border-radius: 0;
    overflow: hidden;
}

body.jat-article-page .single-article-wrap .post-thumbnail-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

body.jat-article-page .single-article-wrap .post-content-wrap {
    font-size: 18px;
    line-height: 1.9;
    color: #2d3b32 !important;
    max-width: 100%;
}

body.jat-article-page .single-article-wrap .post-content-wrap p,
body.jat-article-page .single-article-wrap .post-content-wrap li,
body.jat-article-page .single-article-wrap .post-content-wrap span {
    color: #2d3b32 !important;
}

body.jat-article-page .single-article-wrap .post-content-wrap p,
body.jat-article-page .single-article-wrap .post-content-wrap li {
    margin-bottom: 1rem;
}

body.jat-article-page .single-article-wrap .post-content-wrap h2,
body.jat-article-page .single-article-wrap .post-content-wrap h3 {
    color: #112a1a;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

body.jat-article-page .back-to-top-wrap,
body.jat-article-page #compare-property-panel,
body.jat-article-page .login-register-form.modal {
    display: none !important;
}

@media (max-width: 767px) {
    body.jat-article-page .jat-article-inner,
    body.jat-blog-page .jat-blog-inner {
        padding: 24px 16px 40px;
    }

    body.jat-article-page .single-article-wrap .post-thumbnail-wrap img {
        max-height: 280px;
    }
}
