/* ==========================================================================
   Orion Footer — Custom CSS (no Tailwind utility classes)
   Breakpoints match the project's real Tailwind config, NOT Tailwind
   defaults: sm=640, md=769, lg=992, xl=1199, 1xl=1380, 2xl=1752
   ========================================================================== */

/* ── Shared ─────────────────────────────────────────────── */
.of-link {
    display: block;
    width: fit-content;
    font-weight: 300;
    /* Static in the reference ("underline-offset-4"); only the underline
       itself is applied on hover. */
    text-underline-offset: 4px;
    /* The reference footer links carry no transition; the theme's global
       "a { transition: var(--orion-transition) }" would otherwise fade them. */
    transition: none;
}
.of-link:hover {
    text-decoration: underline;
}

/* Font sizing lives on the widget's Link Typography control so it can carry
   the reference's full responsive schedule; only colour is fixed here. */
.of-link-list,
.of-link-list--white {
    color: #fff;
}
/* The global "a { color: var(--orion-primary) }" rule (a plain element
   selector) beats the inherited white above for any <a> inside these
   lists, since inheritance always loses to an explicit rule of any
   specificity — both callers of this list (footer style1 and style4)
   sit on a dark background, so an explicit white override is always
   correct here. */
.of-link-list a,
.of-link-list--white a {
    color: #fff;
}
.of-link-list li:not(:first-child) {
    margin-top: 2px;
}
@media (min-width: 1199px) {
    .of-link-list li:not(:first-child) { margin-top: 4px; }
}

.of-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 8px 0;
}
.of-accordion__summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
.of-accordion__summary::-webkit-details-marker { display: none; }
.of-accordion__chevron { transition: transform .2s; }
.of-accordion[open] .of-accordion__chevron { transform: rotate(270deg); }
.of-accordion__list { margin-top: 8px; color: #fff; }
.of-accordion__list li:not(:first-child) { margin-top: 4px; }

.of-social-icon {
    width: 41px;
    height: 41px;
    border-radius: 9999px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orion-primary);
    transition: all .2s ease-in-out;
    flex-shrink: 0;
}
.of-social-icon:hover { background: var(--orion-primary); color: #fff; }
@media (min-width: 769px) { .of-social-icon { width: 46px; height: 46px; } }
@media (min-width: 992px) { .of-social-icon { width: 50px; height: 50px; } }
.of-social-icon__initial { font-size: 14px; font-weight: 600; }

.of-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Style 1 — split panel + background image ──────────── */
.of1 { position: relative; overflow: hidden; z-index: 0; }
@media (min-width: 769px) { .of1 { padding-top: 60px; } }
@media (min-width: 992px) { .of1 { padding-top: 70px; } }
@media (min-width: 1199px) { .of1 { padding-top: 80px; } }
@media (min-width: 1752px) { .of1 { padding-top: 100px; } }

.of1__panel {
    background: var(--orion-primary);
    padding: 32px 20px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}
@media (min-width: 769px) { .of1__panel { width: 85%; } }
@media (min-width: 1199px) { .of1__panel { width: 79%; padding: 48px 48px 24px; } }

.of1__logo { margin-bottom: 24px; }
@media (min-width: 769px) { .of1__logo { margin-bottom: 32px; } }
/* Compound selector needed to beat Elementor's ".elementor img{max-width:100%}"
   reset, which otherwise lets the logo render at its full intrinsic width. */
.of1 .of1__logo-img { max-width: 150px; margin: 0 auto; display: block; }
@media (min-width: 769px) { .of1 .of1__logo-img { margin-left: 0; margin-right: 0; } }
@media (min-width: 1199px) { .of1 .of1__logo-img { max-width: 180px; } }
@media (min-width: 1752px) { .of1 .of1__logo-img { max-width: 100%; } }

@media (min-width: 992px) { .of1__body { padding-left: 40px; padding-right: 20px; } }
@media (min-width: 1199px) { .of1__body { padding-left: 64px; padding-right: 0; } }
@media (min-width: 1752px) { .of1__body { padding-left: 80px; } }

.of1__columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
@media (min-width: 640px) { .of1__columns { align-items: flex-start; justify-content: space-between; text-align: left; } }
@media (min-width: 769px) { .of1__columns { flex-direction: row; } }

.of1__mobile-accordion { width: 100%; order: 1; }
@media (min-width: 769px) { .of1__mobile-accordion { display: none; } }

.of1__col { display: none; }
@media (min-width: 769px) { .of1__col { display: block; } }
.of1__col--quick { order: 1; }
@media (min-width: 640px) { .of1__col--quick { margin-bottom: 20px; } }
@media (min-width: 769px) { .of1__col--quick { margin-bottom: 0; } }
.of1__col--services { order: 2; }
@media (min-width: 640px) { .of1__col--services { margin-bottom: 20px; } }
@media (min-width: 769px) { .of1__col--services { margin-bottom: 0; } }
.of1__col--contact { display: block; order: 3; color: #fff; width: 100%; }
@media (min-width: 769px) { .of1__col--contact { width: 29%; } }
@media (min-width: 992px) { .of1__col--contact { width: 28%; } }
@media (min-width: 1752px) { .of1__col--contact { width: 23%; } }
.of1__col--social { display: block; order: 4; width: 100%; }
@media (min-width: 769px) { .of1__col--social { width: auto; } }

.of1__col-heading { display: none; margin-bottom: 12px; font-weight: 400; }
@media (min-width: 769px) { .of1__col-heading { display: block; } }
@media (min-width: 1199px) { .of1__col-heading { margin-bottom: 16px; } }

.of1__contact-list { display: block; color: #fff; text-align: center; }
@media (min-width: 640px) { .of1__contact-list { text-align: start; } }
.of1__contact-list li:not(:first-child) { margin-top: 2px; }
@media (min-width: 1199px) { .of1__contact-list li:not(:first-child) { margin-top: 4px; } }
/* Contact links stretch to the column below md ("block md:w-fit"), unlike the
   other lists which are fit-content at every width. */
.of1__contact-list .of-link { width: auto; }
@media (min-width: 769px) { .of1__contact-list .of-link { width: fit-content; } }
.of1__contact-list .of-link:hover { text-decoration: underline; }

.of1__social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
@media (min-width: 640px) { .of1__social-icons { justify-content: flex-start; } }
@media (min-width: 769px) { .of1__social-icons { display: none; } }
/* Style 1 uses the "btn-primary-reverse" pill (white fill, primary border and
   glyph) rather than the shared grey .of-social-icon chip. */
.of1__social-icon {
    width: 37px;
    height: 37px;
    padding: 4px;
    overflow: hidden;
    background: #fff;
    color: var(--orion-primary);
    border: 1px solid var(--orion-primary);
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
}
.of1__social-icon svg { width: 16px; height: 16px; }
@media (min-width: 640px) {
    .of1__social-icon { width: 40px; height: 40px; }
    .of1__social-icon svg { width: 20px; height: 20px; }
}

.of1__social-list { display: none; color: #fff; margin: 0 auto; }
@media (min-width: 769px) { .of1__social-list { display: block; max-width: 200px; } }
.of1__social-list li:not(:first-child) { margin-top: 2px; }
@media (min-width: 1199px) { .of1__social-list li:not(:first-child) { margin-top: 4px; } }

.of1__bottom {
    margin-top: 20px;
    padding-top: 20px;
    color: #fff;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
}
@media (min-width: 769px) { .of1__bottom { text-align: left; margin-top: 32px; } }
@media (min-width: 992px) { .of1__bottom { margin-top: 44px; } }
@media (min-width: 1199px) { .of1__bottom { margin-top: 52px; padding-top: 24px; } }
@media (min-width: 1752px) { .of1__bottom { margin-top: 64px; } }

.of1__bottom-row { display: flex; flex-direction: column; align-items: center; gap: 10px; }
@media (min-width: 640px) { .of1__bottom-row { flex-direction: row; gap: 0; } }
.of1__copyright { margin-bottom: 0; }
.of1__sep { margin: 0 10px; display: none; }
@media (min-width: 640px) { .of1__sep { display: inline; } }
.of1__legal { display: flex; align-items: center; }
/* Explicit colour: the theme's "p{color:var(--orion-gray-700)}" element rule
   beats the white inherited from .of1__bottom. */
.of1__legal-item { margin-bottom: 0; color: #fff; text-underline-offset: 4px; }
.of1__legal-item a { color: inherit; transition: none; }
.of1__legal-item:hover { text-decoration: underline; }
.of1__legal-sep { margin: 0 10px; }

.of1__bg-wrap { position: absolute; top: 0; right: 0; bottom: 0; width: 44%; display: none; }
@media (min-width: 769px) { .of1__bg-wrap { display: block; } }
@media (min-width: 992px) { .of1__bg-wrap { width: 52%; } }
@media (min-width: 1199px) { .of1__bg-wrap { width: 57%; } }
@media (min-width: 1380px) { .of1__bg-wrap { width: 47%; } }
@media (min-width: 1752px) { .of1__bg-wrap { width: 50%; } }
/* Compound selector (2 classes) needed to beat Elementor's global
   ".elementor img{height:auto;max-width:100%}" reset (0,1,1 specificity),
   which otherwise collapses this image to height:0. */
.of1__bg-wrap .of1__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
}

/* ── Style 2 — minimal social strip ─────────────────────── */
.of2 { position: relative; }
.of2__container { margin: 0 auto; padding: 0 16px; position: relative; z-index: 1; }
@media (min-width: 640px) { .of2__container { max-width: 640px; } }
@media (min-width: 769px) { .of2__container { max-width: 768px; } }
@media (min-width: 992px) { .of2__container { max-width: 992px; } }
@media (min-width: 1199px) { .of2__container { max-width: 1170px; } }
@media (min-width: 1380px) { .of2__container { max-width: 1260px; } }
@media (min-width: 1752px) { .of2__container { max-width: 1472px; } }

.of2__top {
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) { .of2__top { padding: 36px 0; } }
@media (min-width: 769px) { .of2__top { flex-wrap: nowrap; justify-content: space-between; } }
@media (min-width: 1199px) { .of2__top { padding: 44px 0; } }
@media (min-width: 1752px) { .of2__top { padding: 48px 0; } }

.of2__logo-wrap { margin-bottom: 20px; }
@media (min-width: 769px) { .of2__logo-wrap { margin-bottom: 0; } }
.of2__logo-img { max-width: 170px; }
@media (min-width: 640px) { .of2__logo-img { max-width: 200px; } }
@media (min-width: 992px) { .of2__logo-img { max-width: 240px; } }

.of2__follow { width: 100%; text-align: center; }
@media (min-width: 769px) { .of2__follow { display: flex; align-items: center; width: auto; text-align: left; } }
.of2__follow-title {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (min-width: 640px) { .of2__follow-title { margin-bottom: 24px; } }
@media (min-width: 769px) { .of2__follow-title { font-size: 16px; margin-bottom: 0; margin-right: 28px; } }
@media (min-width: 992px) { .of2__follow-title { font-size: 17px; margin-right: 32px; } }
@media (min-width: 1199px) { .of2__follow-title { letter-spacing: 4px; } }
@media (min-width: 1752px) { .of2__follow-title { font-size: 20px; } }

.of2__follow .of-social-list { display: flex; align-items: center; justify-content: center; gap: 12px; }
@media (min-width: 769px) { .of2__follow .of-social-list { justify-content: flex-start; gap: 0; } }
@media (min-width: 769px) { .of2__follow .of-social-list li:not(:first-child) { margin-left: 20px; } }
@media (min-width: 992px) { .of2__follow .of-social-list li:not(:first-child) { margin-left: 24px; } }

.of2__bottom { padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
@media (min-width: 769px) { .of2__bottom { padding: 32px 0; } }
@media (min-width: 1199px) { .of2__bottom { padding: 48px 0; } }
@media (min-width: 992px) { .of2__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

.of2__quick-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    color: #000;
    font-size: 18px;
}
@media (min-width: 769px) { .of2__quick-list { column-gap: 24px; } }
@media (min-width: 992px) { .of2__quick-list { justify-content: flex-start; margin-bottom: 0; } }
.of2__quick-link { color: #000; font-weight: 400; }
.of2__quick-link:hover { color: var(--orion-primary); }

.of2__legal { margin-bottom: 0; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px; }
@media (min-width: 640px) { .of2__legal { gap: 20px; } }
@media (min-width: 992px) { .of2__legal { justify-content: flex-end; } }

.of2__bar { background: #f2f2f2; text-align: center; padding: 12px; }
@media (min-width: 769px) { .of2__bar { padding: 17px 20px; } }
.of2__bar-text { margin-bottom: 0; }

/* ── Style 3 — newsletter + grid ────────────────────────── */
.of3 {
    position: relative;
    background: #EFEFEF; /* HTML bg-gray-100 */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}
@media (min-width: 640px) { .of3 { border-top-left-radius: 60px; border-top-right-radius: 60px; } }
@media (min-width: 992px) { .of3 { border-top-left-radius: 70px; border-top-right-radius: 70px; } }
@media (min-width: 1199px) { .of3 { border-top-left-radius: 90px; border-top-right-radius: 90px; } }

/* Real .container schedule, scoped — the bare .container class is reset
   to max-width:none by a legacy ".elementor-page .container" rule in
   style.css, so this wrapper uses its own class instead (same treatment
   as the header's .oh3__wrapper). */
.of3__container { width: 100%; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px)  { .of3__container { max-width: 640px; } }
@media (min-width: 769px)  { .of3__container { max-width: 769px; } }
@media (min-width: 992px)  { .of3__container { max-width: 992px; } }
@media (min-width: 1199px) { .of3__container { max-width: 1199px; } }
@media (min-width: 1380px) { .of3__container { max-width: 1380px; } }
@media (min-width: 1752px) { .of3__container { max-width: 1752px; } }

.of3__intro {
    padding-top: 40px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
@media (min-width: 640px) { .of3__intro { padding-top: 56px; padding-bottom: 40px; gap: 40px; } }
@media (min-width: 992px) { .of3__intro { flex-direction: row; } }
@media (min-width: 1199px) { .of3__intro { padding-top: 64px; } }

.of3__intro-copy { max-width: 100%; }
@media (min-width: 992px) { .of3__intro-copy { max-width: 50%; } }
@media (min-width: 1752px) { .of3__intro-copy { max-width: 45%; } }

/* Beat theme .h3 / h3 / h4 defaults — match HTML index-3 footer schedule */
.of3__intro-heading {
	margin: 0 0 12px !important;
	color: #000 !important;
	font-family: var(--orion-font-heading, "El Messiri", serif) !important;
	font-weight: 400 !important;
	font-size: 26px !important;
	line-height: 30px !important;
}
@media (min-width: 640px)  { .of3__intro-heading { line-height: 32px !important; } }
@media (min-width: 769px)  { .of3__intro-heading { font-size: 30px !important; line-height: 38px !important; } }
@media (min-width: 1199px) { .of3__intro-heading { margin-bottom: 16px !important; line-height: 40px !important; } }
@media (min-width: 1380px) { .of3__intro-heading { font-size: 36px !important; line-height: 40px !important; } }
@media (min-width: 1752px) { .of3__intro-heading { font-size: 45px !important; line-height: 60px !important; } }

.of3__intro-tagline {
	color: #464343 !important; /* HTML text-gray-400 */
	margin: 0;
	font-weight: 300;
	font-size: 15px;
	line-height: 25px;
}
@media (min-width: 1380px) { .of3__intro-tagline { line-height: 28px; } }

.of3__col--contact h4,
.of3__col--quick h4,
.of3 h4.h4 {
	margin: 0 0 12px !important;
	color: #000 !important;
	font-family: var(--orion-font-heading, "El Messiri", serif) !important;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 28px !important;
}
@media (min-width: 769px) {
	.of3__col--contact h4,
	.of3__col--quick h4,
	.of3 h4.h4 {
		font-size: 22px !important;
		line-height: 30px !important;
	}
}
@media (min-width: 1199px) {
	.of3__col--contact h4,
	.of3__col--quick h4,
	.of3 h4.h4 {
		margin-bottom: 16px !important;
		font-size: 24px !important;
		line-height: 36px !important;
	}
}
@media (min-width: 1752px) {
	.of3__col--contact h4,
	.of3__col--quick h4,
	.of3 h4.h4 {
		font-size: 30px !important;
		line-height: 42px !important;
	}
}

/* Theme `a { color: primary }` — footer text links are black in HTML */
.of3 a:not(.of3__social-icon):not(.of3__phone-btn):not(.btn),
.of3 .of3__link,
.of3 .of3__link a,
.of3 .of3__quick-list a,
.of3 .of3__legal-link,
.of3 .of-link {
	color: #000;
}
.of3 a:not(.of3__social-icon):not(.of3__phone-btn):not(.btn):hover,
.of3 .of3__link:hover,
.of3 .of3__link a:hover,
.of3 .of3__quick-list a:hover,
.of3 .of3__legal-link:hover,
.of3 .of-link:hover {
	color: var(--orion-primary);
}

.of3__form-wrap { width: 100%; }
@media (min-width: 992px) { .of3__form-wrap { width: 44%; padding-top: 24px; } }
@media (min-width: 1199px) { .of3__form-wrap { width: 40%; } }
@media (min-width: 1380px) { .of3__form-wrap { width: 50%; } }

.of3__form { display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; }
@media (min-width: 640px) { .of3__form { flex-direction: row; gap: 20px; } }

.of3__input {
    display: block;
    padding: 12px 16px;
    width: 100%;
    background: transparent;
    border: 1px solid #000;
    font-size: 14px;
    opacity: 1;
}
@media (min-width: 640px) { .of3__input { font-size: 16px; } }
@media (min-width: 1752px) { .of3__input { font-size: 18px; } }
@media (min-width: 992px) { .of3__input { width: 300px; } }
@media (min-width: 1199px) { .of3__input { width: 415px; } }

.of3__grid-section { padding: 30px 0; border-top: 1px solid #000; color: #000; }
@media (min-width: 640px) { .of3__grid-section { padding: 40px 0; } }
@media (min-width: 1199px) { .of3__grid-section { padding: 50px 0; } }

.of3__grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 26px;
    column-gap: 56px;
}
@media (min-width: 640px) { .of3__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; } }
@media (min-width: 769px) { .of3__grid { row-gap: 40px; } }
@media (min-width: 992px) { .of3__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1199px) { .of3__grid { column-gap: 80px; } }

.of3__col--brand { grid-column: span 1; }
@media (min-width: 640px) { .of3__col--brand { grid-column: span 2; } }
@media (min-width: 992px) { .of3__col--brand { grid-column: span 1; } }
@media (min-width: 1380px) { .of3__col-inner { padding-right: 40px; } }
@media (min-width: 1752px) { .of3__col-inner { padding-right: 150px; } }

.of3__logo-link { display: block; margin-bottom: 16px; }
@media (min-width: 1199px) { .of3__logo-link { margin-bottom: 24px; } }
/* Compound selector beats Elementor `.elementor img { max-width:100% }`
   (0,1,1) which otherwise lets the logo render at full intrinsic width. */
.of3 .of3__logo-img {
    max-width: 155px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (min-width: 640px) { .of3 .of3__logo-img { max-width: 170px; } }
@media (min-width: 1199px) { .of3 .of3__logo-img { max-width: 190px; } }
@media (min-width: 1752px) { .of3 .of3__logo-img { max-width: 240px; } }

.of3__tagline { color: #000; font-weight: 300; margin-bottom: 16px; }
@media (min-width: 992px) { .of3__tagline { margin-bottom: 20px; } }
@media (min-width: 1199px) { .of3__tagline { margin-bottom: 24px; } }
@media (min-width: 1752px) { .of3__tagline { margin-bottom: 32px; } }

.of3__follow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; text-align: center; width: 100%; }
@media (min-width: 769px) { .of3__follow { justify-content: flex-start; text-align: left; width: auto; } }
.of3__follow-label {
    font-weight: 500;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-right: 8px;
    font-size: 14px;
}
@media (min-width: 640px) { .of3__follow-label { font-size: inherit; } }
@media (min-width: 1199px) { .of3__follow-label { margin-right: 20px; } }
@media (min-width: 1752px) { .of3__follow-label { margin-right: 32px; } }

.of3__follow .of-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.of3__follow .of-social-list li { list-style: none; margin: 0; padding: 0; }
@media (min-width: 769px) { .of3__follow .of-social-list { justify-content: flex-start; } }
@media (min-width: 1199px) { .of3__follow .of-social-list { gap: 24px; } }

@media (min-width: 1380px) { .of3__col--contact { padding-right: 40px; } }
@media (min-width: 1752px) { .of3__col--contact { padding-right: 150px; } }

.of3__contact-list { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
@media (min-width: 1199px) { .of3__contact-list { gap: 15px; } }
.of3__link { display: block; }
.of3__link:hover { color: var(--orion-primary); }

.of3__phone-btn {
    padding: 0 !important;
    color: var(--orion-primary);
    border: 0;
    border-bottom: 1px solid var(--orion-primary);
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
}
.of3__phone-btn:hover { color: #000; background: transparent; }

/* Match HTML bg-gray-200 (#F5F6F6) + primary icon color. */
.of3__social-icon,
.of3 a.of3__social-icon {
    width: 41px;
    height: 41px;
    border-radius: 9999px;
    background-color: #f5f6f6 !important;
    color: var(--orion-primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .15s ease-in-out;
    overflow: visible;
}
@media (min-width: 1199px) { .of3__social-icon { width: 46px; height: 46px; } }
@media (min-width: 1752px) { .of3__social-icon { width: 50px; height: 50px; } }
.of3__social-icon:hover,
.of3 a.of3__social-icon:hover {
    background-color: var(--orion-primary) !important;
    color: #fff !important;
}
.of3__social-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}
.of3__social-icon svg path { fill: currentColor; }
@media (min-width: 1199px) { .of3__social-icon svg { width: 22px; height: 22px; } }

.of3__quick-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    align-items: start;
    gap: 12px;
    color: #000;
}
@media (min-width: 1199px) { .of3__quick-list { gap: 13px; } }

.of3__bottom {
	background: rgba(0, 0, 0, 0.08); /* HTML bg-[#00000014] */
	border-top: 0;
	padding: 12px 0;
	color: #000;
}
@media (min-width: 769px) { .of3__bottom { padding: 17px 0; } }
.of3__copyright { margin-bottom: 0; color: #000; font-weight: 400; }
.of3__bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: center;
}
@media (min-width: 769px) { .of3__bottom-row { flex-direction: row; text-align: left; } }
.of3__legal { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 0; }
@media (min-width: 640px) { .of3__legal { gap: 20px; } }
.of3__legal-link { color: #000; }
.of3__legal-link:hover { color: var(--orion-primary); }

/* ── Style 4 — dark + branches ───────────────────────────── */
.of4 { position: relative; overflow: hidden; }
.of4__top { background: var(--orion-primary); }
/* Real .container schedule, scoped — same treatment as .oh3__wrapper /
   .of3__container (the bare .container class is reset to max-width:none
   by a legacy ".elementor-page .container" rule in style.css). */
.of4__container { width: 100%; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px)  { .of4__container { max-width: 640px; } }
@media (min-width: 769px)  { .of4__container { max-width: 769px; } }
@media (min-width: 992px)  { .of4__container { max-width: 992px; } }
@media (min-width: 1199px) { .of4__container { max-width: 1199px; } }
@media (min-width: 1380px) { .of4__container { max-width: 1380px; } }
@media (min-width: 1752px) { .of4__container { max-width: 1752px; } }

.of4__row {
    border-top: 1px solid #000;
    padding: 36px 0;
    color: #000;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 28px;
    column-gap: 50px;
}
@media (min-width: 769px) { .of4__row { padding: 48px 0; row-gap: 40px; } }
@media (min-width: 1199px) { .of4__row { padding: 56px 0; column-gap: 60px; flex-wrap: nowrap; } }
@media (min-width: 1380px) { .of4__row { padding: 64px 0; column-gap: 85px; } }
@media (min-width: 1752px) { .of4__row { padding: 80px 0; column-gap: 160px; } }

.of4__brand { width: 100%; }
@media (min-width: 1199px) { .of4__brand { flex: 2 2 0%; width: auto; } }

.of4__logo-link { display: inline-block; line-height: 0; }
/* Beat Elementor `.elementor img { max-width:100%; height:auto }` so the
   white logo keeps the reference's max-width schedule. */
.of4__logo-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 150px !important;
}
@media (min-width: 992px)  { .of4__logo-img { max-width: 190px !important; } }
@media (min-width: 1199px) { .of4__logo-img { max-width: 100% !important; } }

.of4__tagline {
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	margin: 18px 0 0;
}
@media (min-width: 769px)  { .of4__tagline { margin-top: 20px; } }
@media (min-width: 992px)  { .of4__tagline { font-size: 15px; line-height: 25px; } }
@media (min-width: 1199px) { .of4__tagline { line-height: 26px; } }
@media (min-width: 1380px) { .of4__tagline { line-height: 28px; } }
@media (min-width: 1752px) { .of4__tagline { font-size: 18px; line-height: 32px; margin-top: 30px; } }

.of4__form { display: flex; flex-direction: column; justify-content: flex-end; margin-top: 20px; }
@media (min-width: 640px)  { .of4__form { flex-direction: row; } }
@media (min-width: 769px)  { .of4__form { margin-top: 24px; } }
@media (min-width: 1199px) { .of4__form { margin-top: 32px; } }
@media (min-width: 1752px) { .of4__form { margin-top: 40px; } }

.of4__input {
    display: block;
    background: #fff;
    padding: 12px 16px;
    width: 100%;
    outline: none;
    border: 0;
    border-radius: 0;
    font-family: Lexend, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #4e4e4e;
    opacity: 1;
}
@media (min-width: 640px)  { .of4__input { font-size: 16px; line-height: 24px; } }
@media (min-width: 1752px) { .of4__input { font-size: 18px; } }

.of4__submit {
	margin-top: 12px;
	padding-left: 24px !important;
	padding-right: 24px !important;
}
@media (min-width: 640px)  { .of4__submit { margin-top: 0; } }
@media (min-width: 1752px) { .of4__submit { padding-left: 30px !important; padding-right: 30px !important; } }

.of4__copyright {
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	margin: 16px 0 0;
}
@media (min-width: 992px)  { .of4__copyright { font-size: 15px; line-height: 25px; } }
@media (min-width: 1199px) { .of4__copyright { margin-top: 24px; line-height: 26px; } }
@media (min-width: 1380px) { .of4__copyright { line-height: 28px; } }
@media (min-width: 1752px) { .of4__copyright { font-size: 18px; line-height: 32px; margin-top: 36px; } }

/* Columns: full-width stack below 769; side-by-side from md up. */
.of4__col { width: 100%; display: block; flex: 1 1 100%; }
@media (min-width: 769px) { .of4__col { flex: 1 1 0%; } }
@media (min-width: 769px) { .of4__col--branches { flex: 2 2 0%; } }

/* Desktop column headings (Our Branches + open accordion summaries). */
.of4__col-heading {
	color: #fff;
	margin: 0 0 10px;
	font-family: "El Messiri", serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}
@media (min-width: 769px)  { .of4__col-heading { margin-bottom: 12px; } }
@media (min-width: 992px)  { .of4__col-heading { font-size: 22px; } }
@media (min-width: 1199px) { .of4__col-heading { font-size: 24px; line-height: 32px; margin-bottom: 16px; } }
@media (min-width: 1380px) { .of4__col-heading { line-height: 36px; } }
@media (min-width: 1752px) { .of4__col-heading { font-size: 30px; line-height: 42px; } }

/* Mobile accordion: Lexend body (.p) + chevron — matches index-4.html.
   Desktop (≥769): summary becomes the column heading (El Messiri). */
.of4__accordion { border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 0; }
.of4__accordion-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	list-style: none;
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	margin: 0;
}
.of4__accordion-summary::-webkit-details-marker { display: none; }
.of4__accordion-summary::marker { content: ''; }
.of4__accordion-chevron { flex-shrink: 0; color: #fff; transition: transform 0.2s ease-in-out; }
.of4__accordion[open] .of4__accordion-chevron { transform: rotate(180deg); }
.of4__accordion .of4__link-list { margin-top: 8px; }
.of4__link-list li:not(:first-child) { margin-top: 8px; }
@media (min-width: 1752px) { .of4__link-list li:not(:first-child) { margin-top: 10px; } }
.of4__link-list a {
	font-family: Lexend, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	color: #fff;
	text-underline-offset: 2px;
}
@media (min-width: 992px)  { .of4__link-list a { font-size: 15px; line-height: 25px; } }
@media (min-width: 1199px) {
	.of4__link-list a { line-height: 26px; text-underline-offset: 4px; }
}
@media (min-width: 1380px) { .of4__link-list a { line-height: 28px; } }
@media (min-width: 1752px) { .of4__link-list a { font-size: 18px; line-height: 32px; } }

@media (min-width: 769px) {
	.of4__accordion { border-bottom: none; padding: 0; margin: 0; }
	.of4__accordion-summary {
		cursor: default;
		pointer-events: none;
		font-family: "El Messiri", serif;
		font-weight: 500;
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 12px;
	}
	.of4__accordion-chevron { display: none; }
	.of4__accordion .of4__link-list { margin-top: 0; }
}
@media (min-width: 992px) {
	.of4__accordion-summary { font-size: 22px; }
}
@media (min-width: 1199px) {
	.of4__accordion-summary { font-size: 24px; line-height: 32px; margin-bottom: 16px; }
}
@media (min-width: 1380px) {
	.of4__accordion-summary { line-height: 36px; }
}
@media (min-width: 1752px) {
	.of4__accordion-summary { font-size: 30px; line-height: 42px; }
}

.of4__branches { display: flex; flex-direction: column; }
.of4__branch {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.of4__branch:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
@media (min-width: 769px)  { .of4__branch { padding-bottom: 24px; margin-bottom: 24px; } }
@media (min-width: 1199px) { .of4__branch { padding-bottom: 28px; margin-bottom: 28px; } }

.of4__branch-label {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
	margin: 0 0 10px;
}
@media (min-width: 992px)  { .of4__branch-label { font-size: 15px; line-height: 25px; } }
@media (min-width: 1380px) { .of4__branch-label { gap: 14px; margin-bottom: 14px; line-height: 28px; } }
@media (min-width: 1752px) { .of4__branch-label { font-size: 18px; line-height: 32px; } }

.of4__branch-flag { width: 25px; height: 25px; object-fit: cover; flex-shrink: 0; }
@media (min-width: 1380px) { .of4__branch-flag { width: 30px; height: 30px; } }

.of4__branch-address {
	display: block;
	width: 100%;
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	margin: 0;
	text-align: start;
	text-underline-offset: 2px;
	transition: none;
}
.of4__branch-address:hover {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #fff;
}
@media (min-width: 640px)  { .of4__branch-address { text-underline-offset: 4px; } }
@media (min-width: 992px)  { .of4__branch-address { font-size: 15px; line-height: 25px; } }
@media (min-width: 1199px) { .of4__branch-address { line-height: 26px; } }
@media (min-width: 1380px) { .of4__branch-address { line-height: 28px; } }
@media (min-width: 1752px) { .of4__branch-address { font-size: 18px; line-height: 32px; } }

.of4__bottom { background: #000; color: #fff; }
.of4__bottom-container {
    margin: 0 auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: center;
}
@media (min-width: 769px) {
	.of4__bottom-container {
		flex-direction: row;
		align-items: center;
		text-align: left;
	}
}
@media (min-width: 1199px) {
	.of4__bottom-container { padding-top: 24px; padding-bottom: 24px; }
}

.of4__bottom-contact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 16px;
}
@media (min-width: 640px) { .of4__bottom-contact { gap: 8px 16px; } }
@media (min-width: 769px) { .of4__bottom-contact { justify-content: flex-start; } }

.of4__bottom-link,
.of4__social-link {
	color: #fff;
	font-family: Lexend, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	text-underline-offset: 2px;
	transition: none;
}
.of4__bottom-link:hover,
.of4__social-link:hover {
	color: #fff;
	text-decoration: underline;
}
@media (min-width: 992px) {
	.of4__bottom-link,
	.of4__social-link { font-size: 15px; line-height: 25px; }
}
@media (min-width: 1199px) {
	.of4__bottom-link,
	.of4__social-link { line-height: 26px; }
}
@media (min-width: 1380px) {
	.of4__bottom-link,
	.of4__social-link { line-height: 28px; }
}
@media (min-width: 1752px) {
	.of4__bottom-link,
	.of4__social-link { font-size: 18px; line-height: 32px; }
}

.of4__bottom-divider {
	color: #fff;
	display: none;
}
@media (min-width: 640px) { .of4__bottom-divider { display: inline; } }

.of4__social-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
@media (min-width: 640px)  { .of4__social-list { gap: 16px; } }
@media (min-width: 769px)  { .of4__social-list { justify-content: flex-end; } }
@media (min-width: 992px)  { .of4__social-list { gap: 28px; } }
@media (min-width: 1199px) { .of4__social-list { gap: 36px; } }
