/* =========================================================
   Dar Elashaa - Single Service Template
   ========================================================= */

:root {
	--de-navy: #06294d;
	--de-navy-2: #0a3158;
	--de-gold: #b88a2a;
	--de-gold-light: #c79a3a;
	--de-text: #173556;
	--de-muted: #66758a;
	--de-border: #dfe5eb;
	--de-soft: #f8f7f2;
	--de-white: #fff;
}

.darelashaa-service-page {
	margin: 0;
	padding: 0;
	color: var(--de-text);
	background: #fff;
	font-family: inherit;
}

.darelashaa-service-page *,
.darelashaa-service-page *::before,
.darelashaa-service-page *::after {
	box-sizing: border-box;
}

.service-container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.service-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, #fff 0%, #fff 38%, #f7f5ee 100%);
}

.service-hero__inner {
	width: min(1280px, 100%);
	min-height: 405px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 42% 58%;
	align-items: stretch;
}

.service-hero__content {
	position: relative;
	z-index: 2;
	padding: 18px 35px 45px max(30px, calc((100vw - 1120px) / 2));
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin-bottom: 43px;
	font-size: 11px;
	line-height: 1.4;
	color: #42546a;
}

.service-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.service-kicker {
	display: block;
	margin-bottom: 9px;
	color: var(--de-gold);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.service-hero h1 {
	margin: 0 0 9px;
	color: var(--de-gold);
	font-size: clamp(38px, 4vw, 50px);
	line-height: 1.08;
	font-weight: 700;
}

.service-subtitle {
	margin: 0 0 11px;
	color: var(--de-navy);
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
}

.service-subtitle p {
	margin: 0;
}

.service-intro {
	max-width: 510px;
	font-size: 15px;
	line-height: 1.75;
}

.service-intro p:last-child {
	margin-bottom: 0;
}

.service-hero__image {
	min-height: 405px;
	position: relative;
}

.service-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 62px;
	align-items: center;
	padding: 42px 0;
	border-bottom: 1px solid var(--de-border);
}

.service-feature__content {
	min-width: 0;
}

.service-feature__image {
	overflow: hidden;
	border-radius: 6px;
}

.service-feature__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1.8 / 1;
	object-fit: cover;
}

.service-feature--technology .service-feature__content {
	order: 1;
}

.service-feature--technology .service-feature__image {
	order: 2;
}

.service-feature--preparation .service-feature__image {
	order: 1;
}

.service-feature--preparation .service-feature__content {
	order: 2;
}

.service-section__heading {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 13px;
}

.service-section__heading h2 {
	margin: 0;
	color: var(--de-navy);
	font-size: 25px;
	line-height: 1.25;
	font-weight: 700;
}

.service-number {
	flex: 0 0 auto;
	color: var(--de-gold);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .03em;
}

.service-heading-line {
	display: block;
	width: 20px;
	height: 2px;
	flex: 0 0 20px;
	background: var(--de-gold);
}

.service-text {
	font-size: 15px;
	line-height: 1.7;
}

.service-text p:last-child {
	margin-bottom: 0;
}

.service-info-box {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 22px;
	padding: 15px 17px;
	background: var(--de-soft);
	border-radius: 4px;
}

.service-info-box p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}

.service-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	border-radius: 50%;
	background: var(--de-gold);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.service-branches-section,
.service-faq-section {
	padding: 38px 0 32px;
}

.service-section-intro {
	margin: -2px 0 18px;
	font-size: 14px;
	line-height: 1.7;
}

.service-branch-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.service-branch-card {
	min-height: 61px;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 11px 12px;
	border: 1px solid var(--de-border);
	border-radius: 5px;
	background: #fff;
}

.service-branch-icon {
	color: var(--de-gold);
	font-size: 25px;
	line-height: 1;
}

.service-branch-name {
	color: var(--de-navy);
	font-size: 12px;
	line-height: 1.35;
	font-weight: 700;
}

.service-faq-section {
	padding-top: 8px;
}

.service-faq-list {
	border-top: 1px solid var(--de-border);
}

.service-faq-item {
	border-bottom: 1px solid var(--de-border);
}

.service-faq-question {
	width: 100%;
	min-height: 45px;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 0;
	background: #fff;
	color: var(--de-navy);
	text-align: start;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.service-faq-question:hover {
	background: #fafafa;
}

.service-faq-plus {
	flex: 0 0 auto;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	color: var(--de-navy);
	transition: transform .2s ease;
}

.service-faq-question[aria-expanded="true"] .service-faq-plus {
	transform: rotate(45deg);
}

.service-faq-answer {
	padding: 0 48px 18px 15px;
	font-size: 14px;
	line-height: 1.75;
}

.service-faq-answer p:last-child {
	margin-bottom: 0;
}

.service-cta {
	min-height: 125px;
	margin: 0 calc((1120px - 100vw) / 2);
	padding: 25px max(30px, calc((100vw - 1120px) / 2));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	background:
		linear-gradient(rgba(3, 35, 66, .94), rgba(3, 35, 66, .94)),
		url('../images/mri-bg.jpg') center / cover no-repeat;
	color: #fff;
}

.service-cta__content h2 {
	margin: 0 0 5px;
	color: #fff;
	font-size: 24px;
	line-height: 1.25;
}

.service-cta__content p {
	margin: 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
}

.service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	flex: 0 0 auto;
}

.service-btn {
	min-width: 140px;
	min-height: 44px;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 4px;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 700;
	transition: opacity .2s ease, transform .2s ease;
}

.service-btn:hover {
	opacity: .9;
	transform: translateY(-1px);
}

.service-btn--phone {
	background: var(--de-gold);
	color: #fff !important;
}

.service-btn--whatsapp {
	background: #fff;
	color: var(--de-navy) !important;
}

/* RTL */
body.rtl .service-hero__content {
	padding-right: max(30px, calc((100vw - 1120px) / 2));
	padding-left: 35px;
}

body.rtl .service-faq-answer {
	padding-right: 15px;
	padding-left: 48px;
}

body.rtl .service-cta {
	direction: rtl;
}

body.rtl .service-cta__content,
body.rtl .service-feature__content {
	text-align: right;
}

/* Tablet */
@media (max-width: 1050px) {
	.service-hero__inner {
		grid-template-columns: 48% 52%;
	}

	.service-container {
		width: min(100% - 36px, 960px);
	}

	.service-branch-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-cta {
		margin-left: calc((960px - 100vw) / 2);
		margin-right: calc((960px - 100vw) / 2);
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.service-container {
		width: calc(100% - 30px);
	}

	.service-hero__inner {
		display: flex;
		flex-direction: column;
	}

	.service-hero__content {
		padding: 15px 15px 28px;
	}

	body.rtl .service-hero__content {
		padding: 15px 15px 28px;
	}

	.service-breadcrumb {
		margin-bottom: 25px;
	}

	.service-hero__image {
		min-height: 250px;
	}

	.service-hero h1 {
		font-size: 34px;
	}

	.service-subtitle {
		font-size: 18px;
	}

	.service-feature {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 30px 0;
	}

	.service-feature--technology .service-feature__content,
	.service-feature--technology .service-feature__image,
	.service-feature--preparation .service-feature__content,
	.service-feature--preparation .service-feature__image {
		order: initial;
	}

	.service-feature__image img {
		aspect-ratio: 1.55 / 1;
	}

	.service-section__heading h2 {
		font-size: 21px;
	}

	.service-branch-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-cta {
		margin: 0 -15px;
		padding: 25px 15px;
		display: block;
	}

	.service-cta__actions {
		margin-top: 20px;
	}

	.service-btn {
		flex: 1 1 auto;
	}

	.service-faq-answer {
		padding-right: 15px;
		padding-left: 15px;
	}

	body.rtl .service-faq-answer {
		padding-right: 15px;
		padding-left: 15px;
	}
}

@media (max-width: 430px) {
	.service-branch-grid {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   DAR ELASHAA SERVICE HERO - FINAL
   ========================================================= */

.darelashaa-service-page {
    overflow-x: hidden !important;
}

.darelashaa-service-page .service-hero {
    position: relative !important;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 405px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    background-color: #fff !important;

    background-repeat: no-repeat !important;
    background-position: right center !important;
   
}

/* White fade over the left side of the background image */
.darelashaa-service-page .service-hero::before {
    content: "";

    position: absolute;
    z-index: 1;

    top: 0;
    left: 0;

    width: 65%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 48%,
        rgba(255,255,255,.94) 62%,
        rgba(255,255,255,.45) 80%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
}

.darelashaa-service-page .service-hero__inner {
    position: relative !important;
    z-index: 2 !important;

    width: min(1120px, calc(100% - 48px)) !important;

    min-height: 405px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: block !important;
}

.darelashaa-service-page .service-hero__content {
    position: relative !important;
    z-index: 3 !important;

    width: 50% !important;
    min-height: 405px !important;

    margin: 0 !important;
    padding: 18px 30px 45px 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}


/* Don't render the old image element anymore */
.darelashaa-service-page .service-hero__image {
    display: none !important;
}


/* =========================================================
   HERO TYPOGRAPHY
   ========================================================= */

.darelashaa-service-page .service-kicker {
    margin-bottom: 8px !important;

    color: #b88a2a !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    letter-spacing: .08em !important;
}

.darelashaa-service-page .service-hero h1 {
    margin: 0 0 10px !important;

    color: #b88a2a !important;

    font-size: 48px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
}

.darelashaa-service-page .service-subtitle {
    margin: 0 0 12px !important;

    color: #06294d !important;

    font-size: 20px !important;
    line-height: 1.35 !important;
}

.darelashaa-service-page .service-intro {
    max-width: 510px !important;

    color: #173556 !important;

    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   RTL
   ========================================================= */

body.rtl .darelashaa-service-page .service-hero {
    background-position: left center !important;
}

body.rtl .darelashaa-service-page .service-hero::before {
    left: auto;
    right: 0;

    background: linear-gradient(
        270deg,
        #ffffff 0%,
        #ffffff 48%,
        rgba(255,255,255,.94) 62%,
        rgba(255,255,255,.45) 80%,
        rgba(255,255,255,0) 100%
    );
}

body.rtl .darelashaa-service-page .service-hero__content {
    padding-right: 0 !important;
    padding-left: 30px !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .darelashaa-service-page .service-hero {
        min-height: 0 !important;

        background-size: 100% auto !important;
        background-position: center bottom !important;
        padding-bottom: 260px !important;
    }

    .darelashaa-service-page .service-hero::before {
        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(
            180deg,
            #ffffff 0%,
            rgba(255,255,255,.96) 45%,
            rgba(255,255,255,.15) 100%
        ) !important;
    }

    .darelashaa-service-page .service-hero__inner {
        width: calc(100% - 30px) !important;

        min-height: 0 !important;
    }

    .darelashaa-service-page .service-hero__content {
        width: 100% !important;

        min-height: 0 !important;

        padding: 25px 15px 30px !important;
    }

    body.rtl .darelashaa-service-page .service-hero__content {
        padding: 25px 15px 30px !important;
    }

    .darelashaa-service-page .service-hero h1 {
        font-size: 34px !important;
    }

    .darelashaa-service-page .service-subtitle {
        font-size: 18px !important;
    }
}
/* =========================
   BRANCHES - DYNAMIC GRID
   ========================= */

.darelashaa-service-page .service-branch-grid {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;

    grid-template-columns: repeat(
        auto-fit,
        minmax(145px, 1fr)
    ) !important;

    gap: 8px !important;

    margin: 0 !important;
}

.darelashaa-service-page .service-branch-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}


/* =========================
   FAQ - FULL WIDTH
   ========================= */

.darelashaa-service-page .service-faq-section {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.darelashaa-service-page .service-faq-list {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border-top: 1px solid #dfe5eb !important;
}

.darelashaa-service-page .service-faq-item {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border-bottom: 1px solid #dfe5eb !important;
}

.darelashaa-service-page .service-faq-question {
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;
    max-width: none !important;

    min-height: 45px !important;

    margin: 0 !important;
    padding: 10px 15px !important;

    border: 0 !important;

    background: #fff !important;

    color: #06294d !important;

    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;

    cursor: pointer !important;
}

.darelashaa-service-page .service-faq-question > span:first-child {
    display: block !important;

    flex: 1 1 auto !important;

    width: auto !important;
    max-width: none !important;

    margin: 0 !important;

    text-align: left !important;
}

.darelashaa-service-page .service-faq-plus {
    display: block !important;

    flex: 0 0 auto !important;

    margin-left: 20px !important;

    font-size: 22px !important;
    line-height: 1 !important;
}


/* =========================
   RTL
   ========================= */

body.rtl .darelashaa-service-page .service-hero__content {
    padding-right: 0 !important;
    padding-left: 40px !important;
}

body.rtl .darelashaa-service-page .service-hero__image {
    right: auto !important;
    left: 0 !important;
}

body.rtl .darelashaa-service-page .service-hero__image::after {
    background: linear-gradient(
        270deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.92) 10%,
        rgba(255,255,255,.45) 28%,
        rgba(255,255,255,0) 55%
    ) !important;
}

body.rtl .darelashaa-service-page .service-faq-question {
    text-align: right !important;
}

body.rtl .darelashaa-service-page .service-faq-question > span:first-child {
    text-align: right !important;
}

body.rtl .darelashaa-service-page .service-faq-plus {
    margin-left: 0 !important;
    margin-right: 20px !important;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .darelashaa-service-page .service-hero__inner {
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .darelashaa-service-page .service-hero__content {
        width: 100% !important;
        min-height: 0 !important;

        padding: 25px 15px 30px !important;
    }

    .darelashaa-service-page .service-hero__image {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        height: 260px !important;
        min-height: 260px !important;

        order: 2 !important;
    }

    .darelashaa-service-page .service-hero__image img {
        position: absolute !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

    .darelashaa-service-page .service-hero__image::after {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,.05) 100%
        ) !important;
    }

    .darelashaa-service-page .service-branch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 430px) {

    .darelashaa-service-page .service-branch-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Center Branches Section */
.darelashaa-service-page .service-branches-section {
    text-align: center !important;
}

.darelashaa-service-page .service-branches-section .service-section__heading {
    justify-content: center !important;
}

.darelashaa-service-page .service-branches-section .service-section-intro {
    text-align: center !important;
}