/* Secure Services W.L.L — site stylesheet (independent build) */

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/S6uyw4BMUTPHjxAwXjeu.woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    font-display: swap;
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/S6uyw4BMUTPHjx4wXg.woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
}

@font-face {
    font-family: Cairo;
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a1biLD-H.woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
    font-display: swap;
}

@font-face {
    font-family: Cairo;
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a13iLD-H.woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    font-display: swap;
}

@font-face {
    font-family: Cairo;
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a1PiLA.woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    width: 100vw;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Lato, sans-serif !important;
}

body.is-entering {
    animation: siteFadeIn 3s ease;
}

@keyframes siteFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; }

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

/* ——— Shell ——— */
.site-shell {
    overflow-x: hidden;
    position: relative;
}

/* ——— Header / Nav ——— */
.site-header {
    position: relative;
    z-index: 100;
}

.site-header__nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

/* Full-width header shape — same SVG as original site */
.site-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.site-header__bg img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.2, 1.1);
    transform-origin: left top;
}

.site-brand-wrap {
    position: relative;
    z-index: 6;
    display: inline-block;
    padding: 12px 20px 12px 40px;
    flex-shrink: 0;
}

.site-brand {
    display: block;
    position: relative;
    z-index: 4;
}

.site-brand img {
    position: relative;
    z-index: 4;
    max-width: 100%;
    transition: opacity 2s;
}

.site-brand img:hover {
    opacity: 0.5;
}

.site-nav__panel {
    flex: 1;
    display: none;
    justify-content: flex-end;
    align-items: center;
    z-index: 5;
    margin: 0 40px 0 auto;
    padding-top: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
}

.site-nav__link {
    position: relative;
    display: block;
    color: #fdfeff;
    font-weight: 500;
    font-size: 22px;
    padding: 0.5rem 1rem;
    transition: color 1s;
}

.site-nav__link:hover,
.site-nav__link:focus {
    color: #4e8588;
}

.site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #3c8c8c;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang):hover::before,
.site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang):focus::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.site-nav__link--lang {
    display: flex;
    align-items: center;
    background-color: #3c8c8c;
    border-radius: 30px;
    padding: 0 15px !important;
    font-size: 22px;
    color: #fff !important;
    font-family: Cairo, sans-serif !important;
}

.site-nav__link--lang:hover {
    background-color: #2d6464;
    color: #fff !important;
    transition: background-color 1s ease-in;
}

.site-nav__lang-icon {
    width: 40px !important;
    height: 40px !important;
    padding-right: 10px;
}

.site-nav__item--dropdown:hover .site-nav__menu {
    display: block;
}

.site-nav__item--dropdown:hover {
    transform: translateY(10px);
    transition: transform 1s;
}

.site-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 15rem;
    background-color: rgba(33, 72, 72, 0.77) !important;
    border-radius: 0 !important;
    padding: 1rem !important;
    font-size: 18px !important;
    color: #f9ffff !important;
    border-top: 4px solid #3c8c8c !important;
    border-right: none !important;
    border-left: none !important;
    z-index: 200;
}

.site-nav__menu a {
    display: block;
    padding: 0.5rem 1.5rem !important;
    color: #f9ffff !important;
    margin: 10px auto;
    transition: transform 0.4s, background-color 0.4s;
    transform: translateX(0);
    position: relative;
}

.site-nav__menu a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    content: "\f105";
    padding-right: 5px;
    opacity: 0;
    transform: translateX(0);
    transition: transform 1s, opacity 1s;
}

.site-nav__menu a:hover {
    background-color: rgba(60, 140, 140, 0.21) !important;
    transform: translateX(5px);
}

.site-nav__menu a:hover::before {
    opacity: 1;
    transform: translateX(2px);
}

.site-nav__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 0;
}

.site-nav__icon img {
    width: 38px;
    height: 50px;
    max-width: 100%;
}

.site-nav__icon img.is-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity 1s, transform 1s;
    z-index: 2;
}

.site-nav__icon--contact img.is-hover {
    top: -13px;
}

.site-nav__icon:hover img.is-default {
    opacity: 0;
}

.site-nav__icon:hover img.is-hover {
    opacity: 1;
    transform: scale(1.2);
}

.site-nav__item--menu {
    position: relative;
}

.site-nav__link--menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
    line-height: 0;
}

.site-nav__link--menu img {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 50px;
}

.site-nav__close {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 0 0.5rem;
    color: #64b9b9;
    transition: transform 1s;
    z-index: 2;
}

.site-nav__close:hover {
    transform: translateY(-50%) scale(1.2);
}

.site-nav__close svg {
    width: 100%;
    height: 100%;
}

/* Mobile header controls */
.site-header__mobile {
    display: none;
    position: relative;
    z-index: 100;
    margin-left: auto;
    margin-right: 20px;
    align-items: center;
    padding-top: 18px;
}

.site-header__mobile-lang {
    display: inline-block;
    padding-right: 10px;
    font-size: 1.25rem;
    line-height: 1;
}

.site-header__menu-btn {
    display: inline-block;
    cursor: pointer;
    height: auto;
}

.site-header__menu-close {
    display: none;
    cursor: pointer;
    color: #64b9b9;
}

.site-header__menu-close svg {
    height: 0.3em;
    font-size: 3em;
}

/* ——— Search overlay ——— */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(37, 37, 37, 0.95);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.search-overlay__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    padding: 15px;
    color: #fff;
    cursor: pointer;
    border: 1px solid transparent;
}

.search-overlay__close:hover {
    border-color: #d7d7d7;
}

.search-overlay__title {
    display: block;
    font-size: 25px;
    margin-bottom: 30px;
}

.search-overlay__box {
    width: 100%;
    max-width: 700px;
    margin: 15px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.11);
}

.search-overlay__form {
    position: relative;
    display: flex;
    width: 100%;
}

.search-overlay__input {
    width: 100%;
    height: 60px;
    padding: 0 60px 0 16px;
    border: 1px solid #ced4da;
    font-size: 1rem;
}

.search-overlay__submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background-image: linear-gradient(to right, #f9fcff 0%, #fffcf6 51%, #478a8a 100%);
    background-size: 200% auto;
    transition: background-position 0.5s;
}

.search-overlay__submit:hover {
    background-position: right center;
}

/* ——— Side drawer ——— */
.site-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s, visibility 0.5s;
}

.site-drawer-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-drawer {
    position: fixed;
    top: 100px;
    right: -300px;
    bottom: 0;
    z-index: 1110;
    width: 300px;
    padding-top: 20px;
    opacity: 0;
    border-radius: 30px 0 0 30px;
    line-height: 45px;
    background-color: #2d6464;
    pointer-events: none;
    transition: right 0.5s, opacity 0.5s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}

.site-drawer.is-open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

.site-drawer__nav {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.site-drawer__nav::-webkit-scrollbar {
    display: none;
}

.site-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-drawer__nav > ul > li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.site-drawer__nav a {
    display: block;
    position: relative;
    z-index: 2;
    padding: 6px 8px 6px 16px;
    font-size: 22px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.site-drawer__nav > ul > li > a {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.site-drawer__nav > ul > li:not(:has(.site-drawer__toggle)) > a {
    grid-column: 1 / -1;
}

.site-drawer__nav a:hover {
    background-color: #428585;
    color: #fff;
}

.site-drawer__nav img {
    width: 30px;
    height: 30px;
    padding-right: 10px;
    padding-bottom: 4px;
    margin-right: 15px;
    vertical-align: middle;
}

.site-drawer__nav > ul > li > ul {
    display: none;
    grid-column: 1 / -1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-drawer__nav > ul > li.is-expanded > ul {
    display: block;
}

.site-drawer__nav > ul > li > ul a {
    font-size: 18px;
    padding-left: 56px;
}

.site-drawer__toggle {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    width: 16px;
    height: 16px;
    margin: 0 20px 0 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 3;
}

.site-drawer__toggle::before,
.site-drawer__toggle::after {
    content: "";
    position: absolute;
    background-color: #fff;
}

.site-drawer__toggle::before {
    width: 1px;
    height: 90%;
    left: 50%;
    top: 8%;
    transition: height 0.5s;
}

.site-drawer__toggle::after {
    height: 1px;
    width: 90%;
    top: 50%;
    left: 5%;
}

.site-drawer__nav > ul > li.is-expanded > .site-drawer__toggle::before {
    height: 0;
}

/* ——— Hero carousel ——— */
.hero-carousel,
.hero-carousel__slide {
    height: 92vh;
}

.hero-carousel__slide {
    position: relative;
    overflow: hidden;
}

.hero-carousel__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.51);
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-carousel__bg {
    height: 100%;
    background-position: center;
    background-size: cover;
    transform: scale(1.3);
    transition: transform 0.7s;
}

.owl-item.active .hero-carousel__bg {
    transform: none;
}

.hero-carousel__content {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
}

.layout-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.layout-wrap {
    text-align: center;
    margin: auto;
    padding: 0 43px;
    position: relative;
}

.hero-carousel__headline {
    text-align: left;
    color: #fff;
    animation: siteFadeIn 3s ease;
}

.hero-carousel__headline h2 {
    font-size: 66px;
    font-weight: 700;
    margin: 0;
}

/* Owl dot positioning (vertical on desktop) */
.hero-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 30%;
    right: 50px;
    line-height: 1;
    text-align: center;
}

.hero-carousel.owl-carousel .owl-dots .owl-dot {
    display: flex;
    flex-direction: column;
    width: 5px;
    height: 40px;
    margin: 20px 4px 30px;
    padding: 2px !important;
    opacity: 1;
    background-color: #fff;
    transition: background-color 0.3s;
}

.hero-carousel.owl-carousel .owl-dots .owl-dot.active,
.hero-carousel.owl-carousel .owl-dots .owl-dot:hover {
    background-color: #64bab9;
}

/* ——— Inner pages (About, Divisions, Contact…) ——— */
.site-shell--inner {
    position: relative;
    overflow-x: hidden;
}

.site-header--inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.page-banner {
    position: relative;
    padding-top: 125px;
    padding-bottom: 250px;
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 19px;
    animation: siteFadeInUp 1s ease;
}

@keyframes siteFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.51);
    z-index: 0;
}

.page-banner__section {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-banner__inner {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.page-banner__title {
    display: block;
    width: 100%;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    padding: 0 15px 10px;
    margin: 0 0 1.5rem;
}

.page-banner__block {
    padding-bottom: 80px;
}

.page-banner__block--tight {
    padding-bottom: 0;
}

.content-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: flex-start;
    gap: 0;
}

.content-row__media {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
}

.content-row__body {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.content-row__body h2 {
    color: #64b9b9;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    padding-bottom: 20px;
    margin: 0;
}

.content-row__body h2.is-paired {
    padding-bottom: 0;
}

.content-row__body p {
    color: #fff;
    font-size: 22px;
    margin: 0 0 1rem;
}

.content-row__media--offset {
    margin-top: 100px;
}

.page-banner__img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 1s;
}

.page-banner__img:hover {
    transform: scale(1.1);
}

.content-cta {
    text-align: right;
    padding-top: 26px;
}

.page-banner__inner:has(> .page-banner__title + .content-row) .content-cta {
    text-align: center;
}

.content-cta--under-media {
    text-align: center;
    padding-top: 22px;
}

.content-row__media .content-cta--under-media {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.content-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #3c8c8c;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 20px;
    background-image: linear-gradient(45deg, #0c3636 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 1s;
}

.content-cta__btn:hover {
    background-position: 0;
    color: #fff;
}

.content-cta__btn img {
    width: 30px;
    height: 40px;
}

.content-row--reverse .content-row__media {
    order: -1;
}

/* ——— Contact accordion + forms ——— */
.contact-section {
    width: 100%;
    margin-top: 1rem;
}

.contact-accordion {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-panel {
    border-radius: 30px;
    background: rgba(52, 102, 101, 0.76);
    margin-bottom: 10px;
    position: relative;
    transition: background-color 1s;
}

.contact-panel:hover,
.contact-panel.is-open {
    background-color: #175850;
}

.contact-panel__head {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    font: inherit;
}

.contact-panel__head h3 {
    font-size: 26px;
    font-weight: 200;
    margin: 0;
}

.contact-panel__icon {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 5px;
    margin-right: 10px;
    background-color: #4b8686;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-panel__icon img {
    height: 35px;
    width: 40px;
    max-width: 100%;
}

.contact-panel__icon--hover {
    background-color: #113f3f;
    position: absolute;
    left: 10px;
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.contact-panel.is-open .contact-panel__icon--hover,
.contact-panel:hover .contact-panel__icon--hover {
    opacity: 1;
    transform: scale(1.2);
}

.contact-panel__chevron {
    color: #2fa3a3;
    padding: 0.5rem;
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.contact-panel.is-open .contact-panel__chevron {
    transform: rotate(90deg);
}

.contact-panel__body {
    display: none;
    padding: 18px;
}

.contact-panel.is-open .contact-panel__body {
    display: block;
}

.contact-form__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px 1rem;
}

.contact-form__field {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
    margin-bottom: 1rem;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    background-color: #478a8a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    font: inherit;
    box-sizing: border-box;
}

.contact-form__field input {
    height: 50px;
}

.contact-form__field textarea {
    border: 2px solid #64b9b9;
    min-height: 90px;
    resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: #fff;
}

.contact-form__field input[type="number"] {
    -moz-appearance: textfield;
}

.contact-form__field input[type="number"]::-webkit-outer-spin-button,
.contact-form__field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-form__message-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -12px;
}

.contact-form__message-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
}

.contact-form__submit-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.contact-form__captcha-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
    margin-top: 1rem;
}

.contact-form__submit {
    background-image: linear-gradient(to right, #3c8c8c 0, #3c8c8c 51%, #062521 100%);
    background-size: 200% auto;
    border-radius: 20px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 12px 6px 60px;
    cursor: pointer;
    transition: background-position 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

.contact-form__submit:hover {
    background-position: right center;
}

.contact-form__botcheck {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form__submit.is-disabled {
    background-image: linear-gradient(to right, #8c9297 0, #e3e1da 51%, #ecf1f5 100%);
    cursor: not-allowed;
}

.contact-details {
    text-align: center;
    margin-top: 1rem;
}

.contact-details a {
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s;
}

.contact-details a:hover {
    color: #fff;
    opacity: 0.85;
}

.contact-details img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-alert {
    margin: 0 auto 24px;
    padding: 15px;
    font-weight: 600;
    display: none;
}

.contact-alert.is-visible {
    display: block;
}

.contact-alert--success {
    color: #333;
    background-color: #e0ffc7;
    border: 1px solid #b4d39b;
}

.contact-alert--danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.contact-form.is-hidden {
    display: none;
}

@media (min-width: 768px) {
    .contact-form__field {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .contact-form__message-col {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .contact-form__submit-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        margin-top: 0;
        justify-content: flex-start;
    }

    .contact-form__captcha-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 991px) {
    .contact-panel__head h3 {
        font-size: 20px;
    }

    .contact-form__submit {
        font-size: 16px;
    }

    .contact-details a {
        font-size: 15px;
        padding-bottom: 15px;
    }
}

/* ——— Divisions hub grid ——— */
.division-hub__layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: flex-start;
}

.division-hub__cards {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    width: 90%;
    margin-left: auto;
}

.division-hub__media {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: right;
}

.division-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

.division-grid__item {
    padding-bottom: 20px;
}

.division-card {
    display: block;
    height: 100%;
    padding: 40px;
    border-radius: 20px;
    background-color: #3c8c8c;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background-color 1s;
    animation: siteFadeInUp 1.1s ease backwards;
}

.division-grid__item:nth-child(1) .division-card { animation-delay: 0.2s; }
.division-grid__item:nth-child(2) .division-card { animation-delay: 0.4s; }
.division-grid__item:nth-child(3) .division-card { animation-delay: 0.6s; }
.division-grid__item:nth-child(4) .division-card { animation-delay: 0.8s; }

.division-card:hover {
    color: #fff;
}

.division-grid:hover .division-card:not(:hover) {
    background-color: rgba(40, 40, 40, 0.87);
}

.division-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #64b9b9;
    padding: 9px 5px;
}

.division-card__icon img {
    width: 75px;
    height: 70px;
}

.division-card__title {
    font-size: 23px;
    font-weight: 500;
    margin-top: 15px;
}

.content-row--body-first .content-row__body {
    order: 1;
}

.content-row--body-first .content-row__media {
    order: 2;
}

@media (min-width: 768px) {
    .content-row__media {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        text-align: left;
    }

    .content-row__body {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    /* Division subpages: title full-width row, image + text aligned below */
    .page-banner__inner:has(> .page-banner__title + .content-row) {
        display: grid;
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        column-gap: 2rem;
        row-gap: 0;
        align-items: start;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row--body-first) {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .page-banner__title {
        grid-column: 1 / -1;
        margin-bottom: 1.75rem;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row {
        display: contents;
        margin: 0;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row__media,
    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row__body {
        flex: unset;
        max-width: none;
        padding: 0 15px;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row:not(.content-row--body-first)) .content-row__media {
        text-align: left;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row--body-first) .content-row__media {
        text-align: right;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row__body {
        margin-top: -2rem;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row__body h2 {
        padding-bottom: 12px;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-cta {
        text-align: center;
        padding-top: 22px;
    }

    .content-row--reverse .content-row__media {
        order: 2;
        text-align: right;
    }

    .content-row--reverse .content-row__body {
        order: 1;
    }

    .division-hub__cards {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        width: auto;
    }

    .division-hub__media {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .page-banner {
        padding-top: 180px;
        padding-bottom: 50px;
    }
}

@media (min-width: 1500px) {
    .page-banner__section {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-banner__inner {
        max-width: 91.666667%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ——— Quick dock + footer ——— */
.site-bottom {
    position: fixed;
    bottom: 0;
    z-index: 90;
    width: 100%;
}

.quick-dock {
    background-color: #2d6464;
    padding: 6px;
}

.quick-dock__inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    width: 100%;
}

.quick-dock__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
    margin: 0 -15px;
}

.quick-dock__link {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    transform: translateY(0);
    transition: color 1s, transform 1s;
}

.quick-dock__link:hover {
    color: #a0c9c9;
    transform: translateY(-3px);
}

.quick-dock__link img {
    height: 30px;
    margin-right: 7px;
    transition: transform 1s;
}

.quick-dock__link:hover img {
    transform: translateX(-10px);
}

.site-footer {
    padding: 7px 3%;
    background-color: #333;
    text-align: center;
}

.site-footer__copy {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

/* ——— Responsive ——— */
@media (min-width: 992px) {
    .site-nav__panel {
        display: flex;
    }

    .site-header__mobile {
        display: none !important;
    }

    .layout-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .layout-container {
        max-width: 1500px;
    }
}

@media (max-width: 1400px) {
    .site-nav__item {
        padding: 10px;
    }
}

@media (max-width: 1320px) {
    .hero-carousel.owl-carousel .owl-dots {
        right: 26px;
    }

    .site-nav__link,
    .site-nav__link--lang {
        font-size: 17px;
    }

    .site-nav__icon img,
    .site-nav__link--menu img {
        width: 35px;
        height: 35px;
    }

    .site-nav__lang-icon {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 1200px) {
    .site-nav__item {
        padding: 0 5px;
    }

    .site-nav__link {
        padding-right: 0.2rem !important;
        padding-left: 0.2rem !important;
    }
}

@media (max-width: 991px) {
    .site-header__mobile {
        display: flex;
    }

    .site-nav__panel {
        display: none !important;
    }

    .site-brand-wrap {
        padding-left: 20px;
    }

    .layout-wrap {
        padding: 0 15px;
    }

    .hero-carousel__headline h2 {
        font-size: 45px;
    }

    .quick-dock__link img {
        width: 35px;
    }

    .page-banner {
        padding-top: 160px;
        padding-bottom: 100px;
    }

    .content-row--body-first .content-row__media {
        order: -1;
    }

    .page-banner__inner:has(> .page-banner__title + .content-row) .content-row__body {
        margin-top: 1.5rem;
    }

    .page-banner__title,
    .content-row__body h2 {
        font-size: 45px;
    }

    .content-row__body p {
        font-size: 18px;
    }

    .content-row__media--offset {
        margin-top: 30px;
        text-align: center !important;
    }

    .division-hub__cards {
        width: auto;
        margin: 30px auto 0;
    }

    .division-card {
        padding: 25px;
    }

    .division-card__icon {
        width: 80px;
        height: 80px;
    }

    .division-card__icon img {
        width: 60px;
        height: 60px;
    }

    .division-card__title {
        font-size: 18px;
    }
}

@media (max-width: 769px) {
    .site-brand-wrap {
        padding-left: 20px;
        padding-right: 12px;
    }

    .site-header__bg img {
        transform: scale(1.1, 1.06);
    }

    .site-brand img {
        width: 240px;
    }

    .content-row__body h2 {
        font-size: 40px;
    }

    .content-cta__btn {
        font-size: 15px;
    }

    .page-banner__block {
        padding-bottom: 150px;
    }

    .site-nav__link--lang {
        font-size: 16px;
    }

    .quick-dock__link {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        margin-bottom: 15px;
    }

    .site-drawer__nav a {
        font-size: 18px !important;
    }

    .site-drawer__nav > ul > li > ul a {
        font-size: 15px !important;
    }
}

@media (max-width: 600px) {
    .hero-carousel__headline {
        text-align: center;
    }

    .hero-carousel.owl-carousel .owl-dots {
        position: relative;
        top: auto;
        right: auto;
        bottom: 50px !important;
    }

    .hero-carousel.owl-carousel .owl-dots .owl-dot {
        display: inline-block;
        width: 40px;
        height: 5px;
        flex-direction: row;
    }
}

@media (max-width: 500px) {
    .site-brand img {
        width: 156px;
    }
}

@media (max-width: 400px) {
    .site-header__bg {
        left: -35px;
        width: calc(100% + 35px);
    }

    .quick-dock__link {
        flex: 0 0 40.333333%;
        max-width: 40.333333%;
    }
}

@media screen and (max-height: 450px) {
    .site-drawer {
        padding-top: 15px;
    }
}

/* ——— RTL (Arabic) ——— */
html[dir="rtl"] body {
    font-family: Cairo, sans-serif;
    text-align: right;
}

html[dir="rtl"] .site-header__bg img {
    transform-origin: right top;
}

html[dir="rtl"] .site-brand-wrap {
    padding-left: 20px;
    padding-right: 40px;
}

html[dir="rtl"] .site-nav__panel {
    margin: 0 auto 0 40px;
}

html[dir="rtl"] .site-nav__item {
    padding: 0 15px 0 0;
}

html[dir="rtl"] .site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang)::before {
    transform-origin: bottom left;
}

html[dir="rtl"] .site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang):hover::before,
html[dir="rtl"] .site-nav__link:not(.site-nav__link--menu):not(.site-nav__link--lang):focus::before {
    transform-origin: bottom right;
}

html[dir="rtl"] .site-nav__lang-icon {
    padding-right: 0;
    padding-left: 10px;
}

html[dir="rtl"] .site-nav__menu {
    left: auto;
    right: 0;
    text-align: right;
}

html[dir="rtl"] .site-nav__menu a::before {
    content: "\f104";
    padding-right: 0;
    padding-left: 5px;
}

html[dir="rtl"] .site-nav__menu a:hover {
    transform: translateX(-5px);
}

html[dir="rtl"] .site-nav__menu a:hover::before {
    transform: translateX(-2px);
}

html[dir="rtl"] .site-drawer {
    right: auto;
    left: -300px;
    border-radius: 0 30px 30px 0;
    transition: left 0.5s, opacity 0.5s;
}

html[dir="rtl"] .site-drawer.is-open {
    right: auto;
    left: 0;
}

html[dir="rtl"] .site-drawer__nav a {
    text-align: right;
    padding: 6px 16px 6px 8px;
}

html[dir="rtl"] .site-drawer__nav > ul > li > ul a {
    padding-left: 8px;
    padding-right: 56px;
}

html[dir="rtl"] .site-drawer__nav img {
    padding-right: 0;
    padding-left: 10px;
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .site-drawer__toggle {
    margin: 0 8px 0 20px;
}

html[dir="rtl"] .hero-carousel__headline {
    text-align: right;
}

html[dir="rtl"] .page-banner__title,
html[dir="rtl"] .content-row__body {
    text-align: right;
}

html[dir="rtl"] .page-banner__inner:has(> .page-banner__title + .content-row:not(.content-row--body-first)) .content-row__media {
    text-align: right;
}

html[dir="rtl"] .page-banner__inner:has(> .page-banner__title + .content-row--body-first) .content-row__media {
    text-align: left;
}

html[dir="rtl"] .content-cta__btn img {
    transform: scaleX(-1);
}

html[dir="rtl"] .contact-panel__head {
    text-align: right;
}

html[dir="rtl"] .contact-panel__chevron {
    margin-left: 0;
    margin-right: auto;
    transform: rotate(180deg);
}

html[dir="rtl"] .contact-panel.is-open .contact-panel__chevron {
    transform: rotate(90deg);
}

html[dir="rtl"] .contact-form__submit .fa-chevron-right {
    transform: scaleX(-1);
}

html[dir="rtl"] .contact-details a {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .site-footer__copy {
    text-align: right;
}

@media (min-width: 992px) {
    html[dir="rtl"] .site-brand-wrap {
        padding-right: 40px;
        padding-left: 20px;
    }
}

@media (max-width: 400px) {
    html[dir="rtl"] .site-header__bg {
        left: auto;
        right: -35px;
    }
}
