﻿:root {
  --brand-dark:   #0F172A;
  --brand-primary:#0DB39E;
  --brand-primary-hover:#0A8C7C;
  --brand-accent: #FFB703;
  --brand-light:  #F6F7FB;
  --brand-text:   #111827;
}

/* Ø®Ø· Ø¹Ø±Ø¨ÙŠ Ù…Ù†Ø§Ø³Ø¨ (Ø¨Ø¹Ø¯ Ù…Ø§ ØªØ¶ÙŠÙÙ‡ Ù…Ù† Google Fonts Ù…Ø«Ù„Ø§Ù‹ Tajawal) */
body {
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brand-text);
  background-color: #ffffff;
}

/* sections ÙØ§ØªØ­Ø© Ù…Ø´ØªØ±ÙƒØ© */
.section-light {
  background-color: var(--brand-light);
}
.section-dark {
  background-color: var(--brand-dark);
  color: #F9FAFB;
}

.border-primary {
    border-color: #0DB39E !important;
}
.text-primary {
    color: #0DB39E !important;
}
.bg-primary {
    background-color: #0DB39E !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
    font-family: "Changa", sans-serif !important;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--brand-light);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--brand-primary);
}

.btn.btn-light {
    color: var(--brand-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--brand-light);
    background: var(--brand-primary);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--brand-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--brand-primary);
    color: var(--brand-light);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Changa", sans-serif !important;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--brand-light);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--brand-light);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--brand-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--brand-primary);
    color: var(--brand-light);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--brand-light);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--brand-primary);
        color: var(--brand-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--brand-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--brand-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--brand-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
	height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--brand-primary);
    color: var(--brand-light);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    right: 30px;
    margin-right: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--brand-light);
    color: var(--brand-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    font-family: "Changa", sans-serif !important;
}
.header-carousel .header-carousel-item .carousel-caption h4 {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}
@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        right: 50%;
        transform: translateX(50%);
        margin-right: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        right: 50%;
        transform: translateX(50%);
        margin-right: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/

/* ============================================================
   GM About — premium, fully self-contained (v2)
   - No Bootstrap grid dependency
   - No FontAwesome (uses inline SVG)
   - All selectors prefixed with .gm-about (no leakage)
   ============================================================ */

.gm-about,
.gm-about *,
.gm-about *::before,
.gm-about *::after { box-sizing: border-box; }

.gm-about {
    --gma-bg: #F6F7FB;
    --gma-bg-2: #FFFFFF;
    --gma-text: #0F172A;
    --gma-text-soft: #475569;
    --gma-text-muted: #64748B;
    --gma-brand: #0DB39E;
    --gma-brand-2: #2FE6CB;
    --gma-amber: #FFB703;
    --gma-wa: #25D366;
    --gma-card: #ffffff;
    --gma-border: #e2e8f0;
    --gma-radius-lg: 28px;
    --gma-radius-md: 18px;
    --gma-shadow-sm: 0 8px 22px -10px rgba(15, 23, 42, 0.18);
    --gma-shadow-md: 0 18px 40px -16px rgba(15, 23, 42, 0.22);
    --gma-shadow-lg: 0 30px 60px -24px rgba(15, 23, 42, 0.25);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(circle at 12% 8%, rgba(13,179,158,0.06) 0%, transparent 38%),
        radial-gradient(circle at 92% 92%, rgba(255,183,3,0.05) 0%, transparent 40%),
        linear-gradient(180deg, #FFFFFF 0%, var(--gma-bg) 100%);
    color: var(--gma-text);
    font-family: "Tajawal", "Changa", system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    padding-block: clamp(72px, 10vh, 120px);
}

.gm-about a { text-decoration: none; color: inherit; }
.gm-about ul { list-style: none; padding: 0; margin: 0; }
.gm-about p { margin: 0; }

/* Subtle dot pattern overlay */
.gm-about::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
}

/* Decorative blobs */
.gm-about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.gm-about__blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
}
.gm-about__blob--a {
    background: rgba(13,179,158,0.22);
    top: -180px;
    left: -140px;
}
.gm-about__blob--b {
    background: rgba(255,183,3,0.18);
    bottom: -200px;
    right: -140px;
}

/* Layout */
.gm-about__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
@media (min-width: 992px) {
    .gm-about__inner {
        grid-template-columns: 1.05fr 1fr;
    }
}

/* ---------- Content (text) ---------- */
.gm-about__content {
    text-align: start;
    animation: gm-about-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
}

.gm-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gma-brand);
    background: rgba(13,179,158,0.10);
    border: 1px solid rgba(13,179,158,0.22);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 1.1rem;
}
.gm-about__eyebrow-line {
    width: 22px;
    height: 2px;
    background: var(--gma-brand);
    border-radius: 2px;
}

.gm-about__title {
    font-family: "Changa", sans-serif;
    font-size: clamp(1.65rem, 3.4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--gma-text);
    margin: 0 0 1.15rem;
    letter-spacing: -0.005em;
}
.gm-about__title-accent {
    background: linear-gradient(120deg, var(--gma-brand) 0%, var(--gma-brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* keep inline so RTL line-wrap is natural */
}

.gm-about__lede,
.gm-about__body {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--gma-text-soft);
    line-height: 2;
    margin-bottom: 1rem;
}
.gm-about__body { color: var(--gma-text-muted); }

/* Features list */
.gm-about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block: 1.6rem;
}
@media (min-width: 576px) {
    .gm-about__features { grid-template-columns: 1fr 1fr; }
}
.gm-about__feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--gma-card);
    border: 1px solid var(--gma-border);
    border-radius: var(--gma-radius-md);
    padding: 1.1rem 1.15rem;
    box-shadow: var(--gma-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}
.gm-about__feature::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gma-brand) 0%, var(--gma-brand-2) 100%);
    transform: scaleY(0.3);
    transform-origin: top;
    transition: transform .35s ease;
}
.gm-about__feature:hover {
    transform: translateY(-4px);
    border-color: rgba(13,179,158,0.35);
    box-shadow: 0 22px 44px -18px rgba(13,179,158,0.32);
}
.gm-about__feature:hover::before { transform: scaleY(1); }

.gm-about__feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13,179,158,0.16), rgba(47,230,203,0.14));
    color: var(--gma-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.gm-about__feature:hover .gm-about__feature-icon { transform: scale(1.08) rotate(-4deg); }
.gm-about__feature-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gm-about__feature-body { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.gm-about__feature-body strong {
    font-family: "Changa", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gma-text);
}
.gm-about__feature-body span {
    font-size: 0.88rem;
    color: var(--gma-text-soft);
    line-height: 1.85;
}

/* CTA actions row */
.gm-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}
.gm-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    border-radius: 999px;
    padding: 0.65rem 1.2rem 0.65rem 0.85rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    color: #fff;
    font-family: "Tajawal", "Changa", sans-serif;
}
.gm-about__cta:focus-visible {
    outline: 3px solid var(--gma-brand);
    outline-offset: 3px;
}
.gm-about__cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gm-about__cta-icon svg { width: 19px; height: 19px; fill: currentColor; color: #fff; }
.gm-about__cta-body { display: flex; flex-direction: column; line-height: 1.2; }
.gm-about__cta-body small { font-size: 0.7rem; opacity: 0.78; }
.gm-about__cta-body strong {
    font-family: "Changa", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Phone CTA — dark, becomes teal on hover */
.gm-about__cta--phone {
    background: var(--gma-text);
    box-shadow: 0 14px 32px -12px rgba(15,23,42,0.40);
}
.gm-about__cta--phone .gm-about__cta-body strong { direction: ltr; text-align: right; }
.gm-about__cta--phone:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gma-brand), var(--gma-brand-2));
    box-shadow: 0 18px 36px -12px rgba(13,179,158,0.50);
    color: #fff;
}

/* WhatsApp CTA — green gradient */
.gm-about__cta--wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 14px 32px -12px rgba(37,211,102,0.45);
}
.gm-about__cta--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -12px rgba(37,211,102,0.65);
    color: #fff;
}

/* Trust line */
.gm-about__trust {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--gma-text-soft);
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--gma-border);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    backdrop-filter: blur(6px);
}
.gm-about__trust strong { color: var(--gma-text); font-weight: 700; }
.gm-about__trust-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--gma-amber);
}
.gm-about__trust-stars svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Visual column ---------- */
.gm-about__visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
    animation: gm-about-fade-in 1.1s cubic-bezier(.16,1,.3,1) both;
    animation-delay: 0.15s;
}

.gm-about__media {
    position: relative;
    border-radius: var(--gma-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--gma-shadow-lg);
    border: 1px solid var(--gma-border);
    background: var(--gma-text);
}
.gm-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.2s ease;
}
.gm-about__media:hover .gm-about__img { transform: scale(1.05); }

/* Subtle gradient overlay so floating stats stay readable on any photo */
.gm-about__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.0) 50%, rgba(15,23,42,0.30) 100%),
        linear-gradient(0deg, rgba(15,23,42,0.0) 70%, rgba(15,23,42,0.18) 100%);
}

/* Stats are now inside .gm-about__media so they pin to image edges */

/* Stat — experience (top-right corner, partially overlapping image) */
.gm-about__stat--exp {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    background: linear-gradient(135deg, var(--gma-brand) 0%, var(--gma-brand-2) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 0.85rem 1.1rem;
    text-align: center;
    box-shadow: 0 18px 40px -12px rgba(13,179,158,0.55);
    min-width: 110px;
    animation: gm-about-pop 0.8s cubic-bezier(.16,1,.3,1) both;
    animation-delay: 0.5s;
}
.gm-about__stat--exp strong {
    font-family: "Changa", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.gm-about__stat--exp small {
    font-size: 0.78rem;
    opacity: 0.95;
    display: block;
    margin-top: 0.35rem;
}

/* Stat — operations (bottom-left, white card overlapping image) */
.gm-about__stat--ops {
    position: absolute;
    bottom: 18px;
    inset-inline-start: 18px;
    background: var(--gma-card);
    border: 1px solid var(--gma-border);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: var(--gma-shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 200px;
    animation: gm-about-pop 0.8s cubic-bezier(.16,1,.3,1) both;
    animation-delay: 0.65s;
}
.gm-about__stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13,179,158,0.12);
    color: var(--gma-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gm-about__stat-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gm-about__stat-body { display: flex; flex-direction: column; line-height: 1.2; }
.gm-about__stat-body strong {
    font-family: "Changa", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gma-text);
}
.gm-about__stat-body small {
    font-size: 0.78rem;
    color: var(--gma-text-muted);
    margin-top: 2px;
}

/* Quality strip — sits BELOW the image as its own card */
.gm-about__quality {
    margin-top: 1.1rem;
    background: var(--gma-card);
    border: 1px solid var(--gma-border);
    border-radius: 16px;
    box-shadow: var(--gma-shadow-sm);
    padding: 0.85rem 1.1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 1rem;
}
.gm-about__quality li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gma-text);
}
.gm-about__quality-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(13,179,158,0.14);
    color: var(--gma-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gm-about__quality-icon svg { width: 12px; height: 12px; fill: currentColor; }

/* ---------- Animations ---------- */
@keyframes gm-about-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gm-about-fade-in {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes gm-about-pop {
    from { opacity: 0; transform: translateY(8px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .gm-about *,
    .gm-about *::before,
    .gm-about *::after {
        animation: none !important;
        transition: none !important;
    }
    .gm-about__img { transform: none !important; }
}

/* ---------- Tablet (≤991.98) ---------- */
@media (max-width: 991.98px) {
    .gm-about__visual { margin-top: 0.5rem; }
    .gm-about__inner { gap: 2.5rem; }
}

/* ---------- Small tablet (≤767.98) ---------- */
@media (max-width: 767.98px) {
    .gm-about__media { aspect-ratio: 4 / 4.4; }
    .gm-about__stat--exp { padding: 0.75rem 0.95rem; min-width: 100px; }
    .gm-about__stat--exp strong { font-size: 1.7rem; }
    .gm-about__stat--ops { min-width: 0; padding: 0.75rem 0.9rem; }
    .gm-about__stat-body strong { font-size: 1.1rem; }
}

/* ---------- Mobile (≤575.98) ---------- */
@media (max-width: 575.98px) {
    .gm-about { padding-block: 60px; }
    .gm-about__title { font-size: clamp(1.4rem, 6vw, 1.85rem); line-height: 1.45; }
    .gm-about__feature { padding: 0.95rem; }
    .gm-about__actions { flex-direction: column; align-items: stretch; }
    .gm-about__cta { width: 100%; justify-content: flex-start; }
    .gm-about__media { aspect-ratio: 4 / 4; }
    .gm-about__stat--exp {
        top: 12px;
        inset-inline-end: 12px;
        padding: 0.65rem 0.85rem;
        min-width: 88px;
    }
    .gm-about__stat--exp strong { font-size: 1.4rem; }
    .gm-about__stat--exp small { font-size: 0.72rem; }
    .gm-about__stat--ops {
        bottom: 12px;
        inset-inline-start: 12px;
        padding: 0.65rem 0.8rem;
    }
    .gm-about__stat-icon { width: 36px; height: 36px; }
    .gm-about__stat-icon svg { width: 18px; height: 18px; }
    .gm-about__stat-body strong { font-size: 1rem; }
    .gm-about__stat-body small { font-size: 0.72rem; }
    .gm-about__quality {
        padding: 0.7rem 0.85rem;
        justify-content: flex-start;
    }
    .gm-about__quality li { font-size: 0.82rem; }
    .gm-about__trust { font-size: 0.82rem; flex-wrap: wrap; }
}

/* ============================================================
   /GM About v2
   ============================================================ */

/* ============================================================
   GM Facts — premium stats strip, fully self-contained
   - Dark band, RTL-correct, no Bootstrap grid
   - Inline SVG icons (no fact1/2/3.png)
   - Compatible with existing .counterUp jQuery plugin
   ============================================================ */

.gm-facts,
.gm-facts *,
.gm-facts *::before,
.gm-facts *::after { box-sizing: border-box; }

.gm-facts {
    --gmf-bg-1: #0B1224;
    --gmf-bg-2: #111A33;
    --gmf-text: #F8FAFC;
    --gmf-text-soft: #CBD5E1;
    --gmf-text-muted: #94A3B8;
    --gmf-brand: #0DB39E;
    --gmf-brand-2: #2FE6CB;
    --gmf-amber: #FFB703;
    --gmf-border: rgba(148, 163, 184, 0.18);
    --gmf-divider: rgba(148, 163, 184, 0.22);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(180deg, var(--gmf-bg-1) 0%, var(--gmf-bg-2) 100%);
    color: var(--gmf-text);
    font-family: "Tajawal", "Changa", system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    padding-block: clamp(40px, 6vh, 72px);
}

/* Top hairline glow (separates dark facts from light about above) */
.gm-facts::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(13,179,158,0.55) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle dot pattern */
.gm-facts::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

/* Decorative blobs */
.gm-facts__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.gm-facts__blob {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}
.gm-facts__blob--a {
    background: rgba(13, 179, 158, 0.45);
    top: -200px;
    inset-inline-start: -160px;
}
.gm-facts__blob--b {
    background: rgba(56, 189, 248, 0.30);
    bottom: -200px;
    inset-inline-end: -160px;
}

/* Layout */
.gm-facts__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 48px);
}

.gm-facts__rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--gmf-border);
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2rem);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 30px 60px -24px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: gm-facts-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
}
@media (min-width: 768px) {
    .gm-facts__rail { grid-template-columns: repeat(3, 1fr); }
}

/* Each fact item */
.gm-facts__item {
    position: relative;
    text-align: center;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

/* Vertical divider between items on desktop (RTL-aware via inset-inline-start) */
@media (min-width: 768px) {
    .gm-facts__item + .gm-facts__item::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: linear-gradient(180deg, transparent 0%, var(--gmf-divider) 50%, transparent 100%);
    }
}

/* Icon tile */
.gm-facts__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,179,158,0.20), rgba(47,230,203,0.12));
    border: 1px solid rgba(13,179,158,0.30);
    color: var(--gmf-brand-2);
    margin-bottom: 0.35rem;
    box-shadow: 0 12px 28px -10px rgba(13,179,158,0.45);
    transition: transform .35s ease;
}
.gm-facts__item:hover .gm-facts__icon { transform: translateY(-3px) scale(1.04); }
.gm-facts__icon svg { width: 28px; height: 28px; fill: currentColor; }

/* Number row */
.gm-facts__num {
    font-family: "Changa", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gmf-text);
    direction: ltr; /* keep + and digits in natural reading order */
    display: inline-flex;
    align-items: baseline;
    gap: 0.05em;
    background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 8px 30px rgba(13, 179, 158, 0.25);
}
.gm-facts__plus {
    font-size: 0.7em;
    color: var(--gmf-brand-2);
    -webkit-text-fill-color: var(--gmf-brand-2);
    font-weight: 700;
}
.gm-facts__num .counterUp { display: inline-block; }

/* Label under number */
.gm-facts__label {
    font-family: "Tajawal", "Changa", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 0.98rem);
    font-weight: 600;
    color: var(--gmf-text-soft);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* ---------- Animations ---------- */
@keyframes gm-facts-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .gm-facts *,
    .gm-facts *::before,
    .gm-facts *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767.98px) {
    .gm-facts { padding-block: 36px; }
    .gm-facts__rail {
        gap: 0.5rem;
        padding: 1.25rem 1rem;
        border-radius: 20px;
    }
    .gm-facts__item {
        padding: 0.85rem 0.75rem;
    }
    .gm-facts__item + .gm-facts__item {
        border-top: 1px solid var(--gmf-divider);
        padding-top: 1.1rem;
        margin-top: 0.25rem;
    }
    .gm-facts__icon { width: 48px; height: 48px; border-radius: 14px; }
    .gm-facts__icon svg { width: 24px; height: 24px; }
}

/* ============================================================
   /GM Facts
   ============================================================ */

/* ============================================================
   GM Services — premium cards, fully self-contained
   - CPT-driven from page-templates/home-template.php
   - No Bootstrap grid, no FontAwesome, no wow/animate
   - Selectors prefixed with .gm-services
   ============================================================ */

.gm-services,
.gm-services *,
.gm-services *::before,
.gm-services *::after { box-sizing: border-box; }

.gm-services {
    --gms-bg: #FFFFFF;
    --gms-bg-2: #F6F7FB;
    --gms-text: #0F172A;
    --gms-text-soft: #475569;
    --gms-text-muted: #64748B;
    --gms-brand: #0DB39E;
    --gms-brand-2: #2FE6CB;
    --gms-amber: #FFB703;
    --gms-card: #FFFFFF;
    --gms-border: #E2E8F0;
    --gms-radius-lg: 24px;
    --gms-radius-md: 16px;
    --gms-shadow-sm: 0 8px 22px -10px rgba(15, 23, 42, 0.16);
    --gms-shadow-md: 0 18px 38px -16px rgba(15, 23, 42, 0.22);
    --gms-shadow-lg: 0 30px 60px -22px rgba(15, 23, 42, 0.30);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(circle at 8% 5%, rgba(13,179,158,0.05) 0%, transparent 38%),
        radial-gradient(circle at 92% 95%, rgba(255,183,3,0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--gms-bg-2) 0%, var(--gms-bg) 35%, var(--gms-bg-2) 100%);
    color: var(--gms-text);
    font-family: "Tajawal", "Changa", system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    padding-block: clamp(72px, 10vh, 120px);
}

.gm-services a { text-decoration: none; color: inherit; }
.gm-services ul { list-style: none; padding: 0; margin: 0; }
.gm-services p { margin: 0; }

/* Decorative blobs */
.gm-services__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.gm-services__blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}
.gm-services__blob--a {
    background: rgba(13,179,158,0.18);
    top: -200px;
    inset-inline-start: -160px;
}
.gm-services__blob--b {
    background: rgba(56,189,248,0.16);
    bottom: -200px;
    inset-inline-end: -160px;
}

/* Layout */
.gm-services__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

/* Head */
.gm-services__head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    animation: gm-services-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
}
.gm-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gms-brand);
    background: rgba(13,179,158,0.10);
    border: 1px solid rgba(13,179,158,0.22);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 1.1rem;
}
.gm-services__eyebrow-line {
    width: 22px;
    height: 2px;
    background: var(--gms-brand);
    border-radius: 2px;
}
.gm-services__title {
    font-family: "Changa", sans-serif;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--gms-text);
    margin: 0 0 1rem;
    letter-spacing: -0.005em;
}
.gm-services__title-accent {
    background: linear-gradient(120deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.gm-services__lede {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--gms-text-soft);
    line-height: 1.95;
}

/* Grid */
.gm-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .gm-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gm-services__grid { grid-template-columns: repeat(3, 1fr); }
}
.gm-services__item { display: flex; }

/* Card */
.gm-services__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--gms-card);
    border: 1px solid var(--gms-border);
    border-radius: var(--gms-radius-lg);
    overflow: hidden;
    box-shadow: var(--gms-shadow-sm);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
    animation: gm-services-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
}
.gm-services__item:nth-child(2) .gm-services__card { animation-delay: 0.05s; }
.gm-services__item:nth-child(3) .gm-services__card { animation-delay: 0.10s; }
.gm-services__item:nth-child(4) .gm-services__card { animation-delay: 0.15s; }
.gm-services__item:nth-child(5) .gm-services__card { animation-delay: 0.20s; }
.gm-services__item:nth-child(6) .gm-services__card { animation-delay: 0.25s; }

.gm-services__card:hover {
    transform: translateY(-6px);
    border-color: rgba(13,179,158,0.32);
    box-shadow: var(--gms-shadow-lg);
}

/* Top accent bar that appears on hover */
.gm-services__card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    transform: scaleX(0);
    transform-origin: var(--gms-origin, right);
    transition: transform .4s ease;
    z-index: 3;
}
.gm-services__card:hover::before { transform: scaleX(1); }

/* Media */
.gm-services__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #0F172A;
}
.gm-services__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s ease;
}
.gm-services__card:hover .gm-services__img { transform: scale(1.07); }

.gm-services__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15,23,42,0) 55%, rgba(15,23,42,0.45) 100%);
}

/* Badge */
.gm-services__badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: linear-gradient(135deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    color: #fff;
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 12px 26px -10px rgba(13,179,158,0.55);
    z-index: 2;
    letter-spacing: 0.02em;
}

/* Body */
.gm-services__body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.4rem 1.4rem 1.5rem;
    flex-grow: 1;
}
.gm-services__name {
    font-family: "Changa", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    color: var(--gms-text);
}
.gm-services__name a {
    color: inherit;
    transition: color .25s ease;
    background-image: linear-gradient(120deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: right 100%;
    padding-bottom: 2px;
    transition: background-size .35s ease, color .25s ease;
}
.gm-services__name a:hover,
.gm-services__name a:focus-visible {
    color: var(--gms-brand);
    background-size: 100% 2px;
    outline: none;
}

.gm-services__desc {
    font-size: 0.95rem;
    color: var(--gms-text-soft);
    line-height: 1.95;
    /* Clamp to 4 lines so cards align even with varying excerpt length */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bullets */
.gm-services__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-block-start: 0.25rem;
}
.gm-services__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--gms-text);
    line-height: 1.7;
}
.gm-services__bullet-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(13,179,158,0.14);
    color: var(--gms-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.gm-services__bullet-icon svg { width: 11px; height: 11px; fill: currentColor; }

/* "More" link */
.gm-services__more {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Changa", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gms-text);
    padding: 0.55rem 0.95rem 0.55rem 1.05rem;
    border-radius: 999px;
    background: rgba(13,179,158,0.08);
    border: 1px solid rgba(13,179,158,0.20);
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gm-services__more:hover,
.gm-services__more:focus-visible {
    background: linear-gradient(135deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 28px -10px rgba(13,179,158,0.55);
    transform: translateY(-2px);
    outline: none;
}
.gm-services__more-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    transform: scaleX(-1); /* point arrow toward leading edge in RTL */
    transition: transform .3s ease;
}
.gm-services__more-icon svg { width: 100%; height: 100%; fill: currentColor; }
.gm-services__more:hover .gm-services__more-icon,
.gm-services__more:focus-visible .gm-services__more-icon {
    transform: scaleX(-1) translateX(3px);
}

/* Footer CTA */
.gm-services__foot {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 2.75rem);
}
.gm-services__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: "Changa", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--gms-text);
    padding: 0.85rem 1.5rem 0.85rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 18px 36px -14px rgba(15,23,42,0.45);
    transition: transform .25s ease, background .3s ease, box-shadow .25s ease;
}
.gm-services__cta:hover,
.gm-services__cta:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gms-brand) 0%, var(--gms-brand-2) 100%);
    color: #fff;
    box-shadow: 0 22px 44px -14px rgba(13,179,158,0.55);
    outline: none;
}
.gm-services__cta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gm-services__cta-icon svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Animations ---------- */
@keyframes gm-services-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .gm-services *,
    .gm-services *::before,
    .gm-services *::after {
        animation: none !important;
        transition: none !important;
    }
    .gm-services__img { transform: none !important; }
}

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
    .gm-services { padding-block: 60px; }
    .gm-services__title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
    .gm-services__body { padding: 1.2rem 1.2rem 1.3rem; gap: 0.8rem; }
    .gm-services__name { font-size: 1.08rem; }
    .gm-services__desc { -webkit-line-clamp: 5; }
    .gm-services__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   /GM Services
   ============================================================ */


/* ============================================================
   GM Areas — service areas tabs, fully self-contained
   - No FontAwesome (inline SVG)
   - No Bootstrap, vanilla JS tab toggling inline in template
   - Selectors prefixed with .gm-areas
   ============================================================ */

.gm-areas,
.gm-areas *,
.gm-areas *::before,
.gm-areas *::after { box-sizing: border-box; }

.gm-areas {
    --gma-bg: #F6F7FB;
    --gma-bg-2: #FFFFFF;
    --gma-text: #0F172A;
    --gma-text-soft: #475569;
    --gma-text-muted: #64748B;
    --gma-brand: #0DB39E;
    --gma-brand-2: #2FE6CB;
    --gma-amber: #FFB703;
    --gma-card: #FFFFFF;
    --gma-border: #E2E8F0;
    --gma-radius: 18px;
    --gma-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.16);
    --gma-shadow-lg: 0 24px 50px -20px rgba(15,23,42,.28);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(13,179,158,.07) 0, transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(255,183,3,.05) 0, transparent 38%),
        var(--gma-bg);
    color: var(--gma-text);
    font-family: "Tajawal", "Changa", system-ui, sans-serif;
    direction: rtl;
    padding-block: clamp(72px,10vh,120px);
}
.gm-areas a { text-decoration: none; color: inherit; }
.gm-areas ul { list-style: none; padding: 0; margin: 0; }
.gm-areas p { margin: 0; }

/* Decorative background */
.gm-areas__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gm-areas__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.gm-areas__blob--a { background: rgba(13,179,158,.18); top: -180px; inset-inline-end: -160px; }
.gm-areas__blob--b { background: rgba(255,183,3,.14); bottom: -200px; inset-inline-start: -160px; }
.gm-areas__pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; mix-blend-mode: multiply; }

.gm-areas__inner { position: relative; z-index: 1; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }

/* Head */
.gm-areas__head { text-align: center; max-width: 880px; margin: 0 auto clamp(2rem,4vw,2.6rem); animation: gm-areas-up .9s cubic-bezier(.16,1,.3,1) both; }
.gm-areas__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: "Changa", sans-serif; font-size: .78rem; font-weight: 700; color: var(--gma-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-areas__eyebrow-line { width: 22px; height: 2px; background: var(--gma-brand); border-radius: 2px; }
.gm-areas__title { font-family: "Changa", sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; color: var(--gma-text); }
.gm-areas__title-accent { background: linear-gradient(120deg, var(--gma-brand) 0%, var(--gma-brand-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-areas__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gma-text-soft); line-height: 1.95; margin-bottom: 1.6rem; }

/* Stats strip */
.gm-areas__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: .25rem; }
.gm-areas__stat { display: inline-flex; align-items: center; gap: .55rem; padding: .55rem 1rem; background: var(--gma-card); border: 1px solid var(--gma-border); border-radius: 999px; box-shadow: var(--gma-shadow-sm); }
.gm-areas__stat-num { font-family: "Changa", sans-serif; font-weight: 800; font-size: 1rem; background: linear-gradient(120deg, var(--gma-brand), var(--gma-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1; }
.gm-areas__stat-label { font-family: "Changa", sans-serif; font-size: .82rem; color: var(--gma-text-soft); }

/* Tabs */
.gm-areas__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 0 auto clamp(1.5rem,3vw,2rem); padding: .4rem; background: var(--gma-card); border: 1px solid var(--gma-border); border-radius: 999px; max-width: max-content; box-shadow: var(--gma-shadow-sm); animation: gm-areas-up .9s cubic-bezier(.16,1,.3,1) both; animation-delay: 80ms; }
.gm-areas__tab { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.1rem; border-radius: 999px; border: none; background: transparent; color: var(--gma-text-soft); font-family: "Changa", sans-serif; font-weight: 700; font-size: .92rem; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.gm-areas__tab:hover { color: var(--gma-text); background: rgba(13,179,158,.06); }
.gm-areas__tab:focus-visible { outline: 2px solid var(--gma-brand); outline-offset: 2px; }
.gm-areas__tab.is-active { background: linear-gradient(135deg, var(--gma-brand), var(--gma-brand-2)); color: #fff; box-shadow: 0 12px 26px -10px rgba(13,179,158,.55); }
.gm-areas__tab-count { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 22px; padding: 0 .45rem; border-radius: 999px; background: rgba(13,179,158,.10); color: var(--gma-brand); font-size: .72rem; font-weight: 700; transition: background .25s ease, color .25s ease; }
.gm-areas__tab.is-active .gm-areas__tab-count { background: rgba(255,255,255,.20); color: #fff; }

/* Panels */
.gm-areas__panels { position: relative; }
.gm-areas__panel { display: none; }
.gm-areas__panel.is-active { display: block; animation: gm-areas-fade .35s ease both; }

/* Grid */
.gm-areas__grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
@media (min-width: 480px) { .gm-areas__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .gm-areas__grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1100px) { .gm-areas__grid { grid-template-columns: repeat(4,1fr); } }
.gm-areas__item { display: flex; animation: gm-areas-up .55s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--gm-a-delay,0ms); }

/* Chip */
.gm-areas__chip { position: relative; width: 100%; display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; background: var(--gma-card); border: 1px solid var(--gma-border); border-radius: 14px; box-shadow: var(--gma-shadow-sm); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease, background .3s ease; overflow: hidden; }
.gm-areas__chip::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,179,158,.06) 0%, rgba(47,230,203,.04) 100%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.gm-areas__chip:hover { transform: translateY(-3px); border-color: rgba(13,179,158,.32); box-shadow: var(--gma-shadow-lg); }
.gm-areas__chip:hover::before { opacity: 1; }
.gm-areas__chip:focus-visible { outline: 2px solid var(--gma-brand); outline-offset: 2px; }

.gm-areas__chip-pin { position: relative; z-index: 1; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(13,179,158,.14), rgba(47,230,203,.08)); border: 1px solid rgba(13,179,158,.20); color: var(--gma-brand); transition: background .35s ease, color .35s ease, transform .35s ease; }
.gm-areas__chip-pin svg { width: 18px; height: 18px; fill: currentColor; }
.gm-areas__chip:hover .gm-areas__chip-pin { background: linear-gradient(135deg, var(--gma-brand), var(--gma-brand-2)); color: #fff; transform: scale(1.06); border-color: transparent; }

.gm-areas__chip-text { position: relative; z-index: 1; flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.gm-areas__chip-name { font-family: "Changa", sans-serif; font-size: .98rem; font-weight: 700; color: var(--gma-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gm-areas__chip-tag { font-size: .72rem; color: var(--gma-text-muted); font-family: "Changa", sans-serif; }

.gm-areas__chip-arrow { position: relative; z-index: 1; flex: 0 0 auto; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: var(--gma-text-muted); opacity: .65; transition: color .3s ease, transform .3s ease, opacity .3s ease; }
.gm-areas__chip-arrow svg { width: 16px; height: 16px; fill: currentColor; transform: scaleX(-1); }
.gm-areas__chip:hover .gm-areas__chip-arrow { color: var(--gma-brand); opacity: 1; transform: translateX(-3px); }

/* Bottom CTA */
.gm-areas__cta { margin-top: clamp(2rem,4vw,2.5rem); padding: clamp(1.25rem,2.5vw,1.6rem) clamp(1.25rem,3vw,1.8rem); background: linear-gradient(135deg, rgba(13,179,158,.07), rgba(47,230,203,.04)); border: 1px dashed rgba(13,179,158,.30); border-radius: 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.gm-areas__cta-text { display: inline-flex; align-items: center; gap: .65rem; color: var(--gma-text); font-family: "Changa", sans-serif; font-size: .98rem; font-weight: 600; flex: 1 1 280px; }
.gm-areas__cta-icon { width: 22px; height: 22px; fill: var(--gma-brand); flex: 0 0 auto; }
.gm-areas__cta-actions { display: inline-flex; flex-wrap: wrap; gap: .55rem; }
.gm-areas__btn { display: inline-flex; align-items: center; gap: .45rem; padding: .75rem 1.2rem; border-radius: 12px; font-family: "Changa", sans-serif; font-weight: 700; font-size: .92rem; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.gm-areas__btn svg { width: 18px; height: 18px; fill: currentColor; }
.gm-areas__btn--primary { background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); }
.gm-areas__btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 34px -10px rgba(37,211,102,.6); }
.gm-areas__btn--ghost { background: var(--gma-card); border: 1px solid var(--gma-border); color: var(--gma-text); }
.gm-areas__btn--ghost svg { transform: scaleX(-1); }
.gm-areas__btn--ghost:hover { border-color: rgba(13,179,158,.32); color: var(--gma-brand); transform: translateY(-2px); }

/* Animations */
@keyframes gm-areas-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gm-areas-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .gm-areas *,.gm-areas *::before,.gm-areas *::after { animation: none !important; transition: none !important; } }

/* Mobile tuning */
@media (max-width: 575.98px) {
    .gm-areas { padding-block: 60px; }
    .gm-areas__title { font-size: clamp(1.4rem,6vw,1.85rem); }
    .gm-areas__tabs { width: 100%; max-width: none; justify-content: stretch; border-radius: 16px; }
    .gm-areas__tab { flex: 1 1 0; justify-content: center; padding: .55rem .8rem; font-size: .85rem; }
    .gm-areas__chip-pin { width: 34px; height: 34px; border-radius: 10px; }
    .gm-areas__cta { flex-direction: column; align-items: stretch; text-align: center; }
    .gm-areas__cta-text { justify-content: center; }
    .gm-areas__cta-actions { justify-content: center; }
}

/* ============================================================
   /GM Areas
   ============================================================ */
/* ============================================================
   GM Features — premium "why us" cards, fully self-contained
   - No FontAwesome (inline SVG)
   - No Bootstrap grid, no wow/animate
   - Selectors prefixed with .gm-features
   ============================================================ */

.gm-features,
.gm-features *,
.gm-features *::before,
.gm-features *::after { box-sizing: border-box; }

.gm-features {
    --gmft-bg: #FFFFFF;
    --gmft-bg-2: #F6F7FB;
    --gmft-text: #0F172A;
    --gmft-text-soft: #475569;
    --gmft-text-muted: #64748B;
    --gmft-brand: #0DB39E;
    --gmft-brand-2: #2FE6CB;
    --gmft-amber: #FFB703;
    --gmft-card: #FFFFFF;
    --gmft-border: #E2E8F0;
    --gmft-radius-lg: 24px;
    --gmft-shadow-sm: 0 8px 22px -10px rgba(15, 23, 42, 0.16);
    --gmft-shadow-lg: 0 30px 60px -22px rgba(15, 23, 42, 0.28);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(circle at 90% 10%, rgba(13,179,158,0.06) 0%, transparent 35%),
        radial-gradient(circle at 5% 95%, rgba(56,189,248,0.05) 0%, transparent 38%),
        var(--gmft-bg);
    color: var(--gmft-text);
    font-family: "Tajawal", "Changa", system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    padding-block: clamp(72px, 10vh, 120px);
}

.gm-features a { text-decoration: none; color: inherit; }
.gm-features ul { list-style: none; padding: 0; margin: 0; }
.gm-features p { margin: 0; }

/* Decorative blobs */
.gm-features__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.gm-features__blob {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.40;
}
.gm-features__blob--a {
    background: rgba(13,179,158,0.18);
    top: -180px;
    inset-inline-end: -160px;
}
.gm-features__blob--b {
    background: rgba(255,183,3,0.16);
    bottom: -200px;
    inset-inline-start: -160px;
}

/* Layout */
.gm-features__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

/* Head */
.gm-features__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    animation: gm-features-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
}
.gm-features__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gmft-brand);
    background: rgba(13,179,158,0.10);
    border: 1px solid rgba(13,179,158,0.22);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 1.1rem;
}
.gm-features__eyebrow-line {
    width: 22px;
    height: 2px;
    background: var(--gmft-brand);
    border-radius: 2px;
}
.gm-features__title {
    font-family: "Changa", sans-serif;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--gmft-text);
    margin: 0 0 1rem;
    letter-spacing: -0.005em;
}
.gm-features__title-accent {
    background: linear-gradient(120deg, var(--gmft-brand) 0%, var(--gmft-brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.gm-features__lede {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--gmft-text-soft);
    line-height: 1.95;
}

/* Grid */
.gm-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .gm-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gm-features__grid { grid-template-columns: repeat(3, 1fr); }
}
.gm-features__item {
    display: flex;
    animation: gm-features-fade-up 0.9s cubic-bezier(.16,1,.3,1) both;
    animation-delay: var(--gm-feat-delay, 0ms);
}

/* Card */
.gm-features__card {
    position: relative;
    width: 100%;
    background: var(--gmft-card);
    border: 1px solid var(--gmft-border);
    border-radius: var(--gmft-radius-lg);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    overflow: hidden;
    box-shadow: var(--gmft-shadow-sm);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.gm-features__card:hover {
    transform: translateY(-6px);
    border-color: rgba(13,179,158,0.32);
    box-shadow: var(--gmft-shadow-lg);
}

/* Decorative gradient that emerges from inside-end on hover */
.gm-features__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 100% 100%, rgba(13,179,158,0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.gm-features__card:hover::after { opacity: 1; }

/* Big faint number — sits on the inside-end as a watermark */
.gm-features__num {
    position: absolute;
    top: 0.85rem;
    inset-inline-end: 1rem;
    font-family: "Changa", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(13,179,158,0.18);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke-color .35s ease, transform .35s ease;
}
.gm-features__card:hover .gm-features__num {
    -webkit-text-stroke-color: rgba(13,179,158,0.35);
    transform: translateY(-2px);
}

/* Icon tile */
.gm-features__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13,179,158,0.16), rgba(47,230,203,0.10));
    border: 1px solid rgba(13,179,158,0.22);
    color: var(--gmft-brand);
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    box-shadow: 0 12px 28px -12px rgba(13,179,158,0.40);
    transition: transform .35s ease, background .35s ease, color .35s ease;
}
.gm-features__icon svg { width: 30px; height: 30px; fill: currentColor; }
.gm-features__card:hover .gm-features__icon {
    transform: translateY(-2px) rotate(-4deg) scale(1.04);
    background: linear-gradient(135deg, var(--gmft-brand) 0%, var(--gmft-brand-2) 100%);
    color: #fff;
}

/* Name & description */
.gm-features__name {
    position: relative;
    z-index: 1;
    font-family: "Changa", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--gmft-text);
    margin: 0 0 0.6rem;
}
.gm-features__desc {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: var(--gmft-text-soft);
    line-height: 1.95;
}

/* ---------- Animations ---------- */
@keyframes gm-features-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .gm-features *,
    .gm-features *::before,
    .gm-features *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
    .gm-features { padding-block: 60px; }
    .gm-features__title { font-size: clamp(1.4rem, 6vw, 1.85rem); }
    .gm-features__card { padding: 1.4rem; }
    .gm-features__num { font-size: 2.8rem; top: 0.7rem; inset-inline-end: 0.8rem; }
    .gm-features__icon { width: 56px; height: 56px; border-radius: 16px; }
    .gm-features__icon svg { width: 26px; height: 26px; }
    .gm-features__name { font-size: 1.08rem; }
}

/* ============================================================
   /GM Features
   ============================================================ */

/* ============================================================
   GM Blog — premium articles grid, fully self-contained
   ============================================================ */

.gm-blog,
.gm-blog *,
.gm-blog *::before,
.gm-blog *::after { box-sizing: border-box; }

.gm-blog {
    --gmb-bg: #F6F7FB;
    --gmb-text: #0F172A;
    --gmb-text-soft: #475569;
    --gmb-text-muted: #64748B;
    --gmb-brand: #0DB39E;
    --gmb-brand-2: #2FE6CB;
    --gmb-card: #FFFFFF;
    --gmb-border: #E2E8F0;
    --gmb-radius: 24px;
    --gmb-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.16);
    --gmb-shadow-lg: 0 30px 60px -22px rgba(15,23,42,.28);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(13,179,158,.06) 0, transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(56,189,248,.05) 0, transparent 38%),
        var(--gmb-bg);
    color: var(--gmb-text);
    font-family: "Tajawal", "Changa", system-ui, sans-serif;
    direction: rtl;
    padding-block: clamp(72px,10vh,120px);
}
.gm-blog a { text-decoration: none; color: inherit; }
.gm-blog ul { list-style: none; padding: 0; margin: 0; }
.gm-blog p { margin: 0; }

.gm-blog__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gm-blog__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.gm-blog__blob--a { background: rgba(13,179,158,.18); top: -180px; inset-inline-end: -160px; }
.gm-blog__blob--b { background: rgba(255,183,3,.14); bottom: -200px; inset-inline-start: -160px; }

.gm-blog__inner { position: relative; z-index: 1; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }

.gm-blog__head { text-align: center; max-width: 820px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); animation: gm-blog-up .9s cubic-bezier(.16,1,.3,1) both; }
.gm-blog__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: "Changa", sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmb-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-blog__eyebrow-line { width: 22px; height: 2px; background: var(--gmb-brand); border-radius: 2px; }
.gm-blog__title { font-family: "Changa", sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; }
.gm-blog__title-accent { background: linear-gradient(120deg, var(--gmb-brand), var(--gmb-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-blog__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmb-text-soft); line-height: 1.95; }

.gm-blog__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .gm-blog__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .gm-blog__grid { grid-template-columns: repeat(3,1fr); } }
.gm-blog__item { display: flex; animation: gm-blog-up .9s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--gm-blog-delay,0ms); }

.gm-blog__card { position: relative; width: 100%; background: var(--gmb-card); border: 1px solid var(--gmb-border); border-radius: var(--gmb-radius); overflow: hidden; box-shadow: var(--gmb-shadow-sm); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; display: flex; flex-direction: column; }
.gm-blog__card:hover { transform: translateY(-6px); border-color: rgba(13,179,158,.32); box-shadow: var(--gmb-shadow-lg); }

.gm-blog__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, rgba(13,179,158,.10), rgba(47,230,203,.06)); }
.gm-blog__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gm-blog__card:hover .gm-blog__img { transform: scale(1.06); }
.gm-blog__img--ph { display: flex; align-items: center; justify-content: center; color: rgba(13,179,158,.5); }
.gm-blog__img--ph svg { width: 56px; height: 56px; fill: currentColor; }
.gm-blog__cat { position: absolute; top: 12px; inset-inline-start: 12px; background: linear-gradient(135deg, var(--gmb-brand), var(--gmb-brand-2)); color: #fff; font-family: "Changa", sans-serif; font-size: .72rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; letter-spacing: .03em; box-shadow: 0 8px 20px -8px rgba(13,179,158,.5); }

.gm-blog__body { padding: clamp(1.25rem,2.4vw,1.6rem); display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.gm-blog__meta { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--gmb-text-muted); font-family: "Changa", sans-serif; }
.gm-blog__dot { color: rgba(13,179,158,.6); }
.gm-blog__name { font-family: "Changa", sans-serif; font-size: 1.15rem; font-weight: 700; line-height: 1.55; color: var(--gmb-text); margin: 0; }
.gm-blog__name a { background-image: linear-gradient(var(--gmb-brand), var(--gmb-brand)); background-size: 0% 2px; background-repeat: no-repeat; background-position: 100% 100%; transition: background-size .35s ease, color .35s ease; }
.gm-blog__card:hover .gm-blog__name a { background-size: 100% 2px; color: var(--gmb-brand); }
.gm-blog__desc { font-size: .92rem; color: var(--gmb-text-soft); line-height: 1.85; }
.gm-blog__more { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem; color: var(--gmb-brand); font-family: "Changa", sans-serif; font-size: .88rem; font-weight: 700; padding-top: .35rem; }
.gm-blog__more svg { width: 16px; height: 16px; fill: currentColor; transform: scaleX(-1); transition: transform .3s ease; }
.gm-blog__more:hover svg { transform: scaleX(-1) translateX(3px); }

.gm-blog__foot { text-align: center; margin-top: clamp(2rem,4vw,2.6rem); }
.gm-blog__btn { display: inline-flex; align-items: center; gap: .55rem; padding: .9rem 1.6rem; border-radius: 999px; background: linear-gradient(135deg, var(--gmb-brand), var(--gmb-brand-2)); color: #fff; font-family: "Changa", sans-serif; font-weight: 700; font-size: .95rem; box-shadow: 0 14px 32px -12px rgba(13,179,158,.5); transition: transform .25s ease, box-shadow .25s ease; }
.gm-blog__btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -10px rgba(13,179,158,.6); color: #fff; }
.gm-blog__btn svg { width: 16px; height: 16px; fill: currentColor; transform: scaleX(-1); }

@keyframes gm-blog-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .gm-blog *,.gm-blog *::before,.gm-blog *::after { animation: none !important; transition: none !important; } }

@media (max-width: 575.98px) {
    .gm-blog { padding-block: 60px; }
    .gm-blog__title { font-size: clamp(1.4rem,6vw,1.85rem); }
}

/* ============================================================
   GM FAQ — native details/summary, premium light theme
   ============================================================ */

.gm-faq,
.gm-faq *,
.gm-faq *::before,
.gm-faq *::after { box-sizing: border-box; }

.gm-faq {
    --gmf-bg: #FFFFFF;
    --gmf-text: #0F172A;
    --gmf-text-soft: #475569;
    --gmf-text-muted: #64748B;
    --gmf-brand: #0DB39E;
    --gmf-brand-2: #2FE6CB;
    --gmf-amber: #FFB703;
    --gmf-card: #FFFFFF;
    --gmf-border: #E2E8F0;
    --gmf-radius: 18px;
    --gmf-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.14);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(13,179,158,.06) 0, transparent 40%),
        var(--gmf-bg);
    color: var(--gmf-text);
    font-family: "Tajawal", "Changa", system-ui, sans-serif;
    direction: rtl;
    padding-block: clamp(72px,10vh,120px);
}
.gm-faq a { text-decoration: none; color: inherit; }
.gm-faq p { margin: 0; }

.gm-faq__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gm-faq__blob { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(110px); opacity: .35; }
.gm-faq__blob--a { background: rgba(13,179,158,.18); top: -160px; inset-inline-start: -140px; }
.gm-faq__blob--b { background: rgba(255,183,3,.14); bottom: -180px; inset-inline-end: -140px; }

.gm-faq__inner { position: relative; z-index: 1; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }

.gm-faq__head { text-align: center; max-width: 820px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); animation: gm-faq-up .9s cubic-bezier(.16,1,.3,1) both; }
.gm-faq__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: "Changa", sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmf-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-faq__eyebrow-line { width: 22px; height: 2px; background: var(--gmf-brand); border-radius: 2px; }
.gm-faq__title { font-family: "Changa", sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; }
.gm-faq__title-accent { background: linear-gradient(120deg, var(--gmf-brand), var(--gmf-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-faq__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmf-text-soft); line-height: 1.95; }

.gm-faq__layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 992px) { .gm-faq__layout { grid-template-columns: 1.45fr 1fr; gap: 2rem; align-items: start; } }

.gm-faq__list { display: flex; flex-direction: column; gap: .85rem; }
.gm-faq__item { background: var(--gmf-card); border: 1px solid var(--gmf-border); border-radius: var(--gmf-radius); overflow: hidden; box-shadow: var(--gmf-shadow-sm); transition: border-color .3s ease, box-shadow .3s ease; }
.gm-faq__item[open] { border-color: rgba(13,179,158,.35); box-shadow: 0 18px 40px -18px rgba(13,179,158,.30); }
.gm-faq__item summary::-webkit-details-marker { display: none; }
.gm-faq__item summary { list-style: none; }

.gm-faq__q { display: flex; align-items: center; gap: .9rem; padding: 1.05rem 1.2rem; cursor: pointer; user-select: none; font-family: "Changa", sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--gmf-text); line-height: 1.55; transition: background .3s ease; }
.gm-faq__q:hover { background: rgba(13,179,158,.04); }
.gm-faq__q:focus-visible { outline: 2px solid var(--gmf-brand); outline-offset: -2px; }
.gm-faq__q-num { flex: 0 0 auto; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, rgba(13,179,158,.14), rgba(47,230,203,.08)); border: 1px solid rgba(13,179,158,.20); color: var(--gmf-brand); font-size: .85rem; }
.gm-faq__item[open] .gm-faq__q-num { background: linear-gradient(135deg, var(--gmf-brand), var(--gmf-brand-2)); color: #fff; border-color: transparent; }
.gm-faq__q-text { flex: 1; }
.gm-faq__q-icon { flex: 0 0 auto; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; color: var(--gmf-text-muted); transition: transform .35s ease, color .3s ease; }
.gm-faq__q-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gm-faq__item[open] .gm-faq__q-icon { transform: rotate(180deg); color: var(--gmf-brand); }

.gm-faq__a { padding: 0 1.2rem 1.15rem calc(1.2rem + 36px + .9rem); color: var(--gmf-text-soft); font-size: .96rem; line-height: 1.95; animation: gm-faq-fade .35s ease both; }

.gm-faq__aside { position: sticky; top: 90px; }
.gm-faq__card { background: linear-gradient(160deg, #0B1224 0%, #111A33 100%); color: #fff; border-radius: 24px; padding: clamp(1.5rem,3vw,2rem); position: relative; overflow: hidden; box-shadow: 0 30px 60px -22px rgba(11,18,36,.5); }
.gm-faq__card::before { content: ""; position: absolute; top: -60px; inset-inline-end: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(13,179,158,.35) 0, transparent 70%); pointer-events: none; }
.gm-faq__card-icon { position: relative; z-index: 1; display: inline-flex; width: 56px; height: 56px; border-radius: 16px; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gmf-brand), var(--gmf-brand-2)); color: #fff; box-shadow: 0 12px 28px -10px rgba(13,179,158,.6); margin-bottom: 1.1rem; }
.gm-faq__card-icon svg { width: 28px; height: 28px; fill: currentColor; }
.gm-faq__card-title { position: relative; z-index: 1; font-family: "Changa", sans-serif; font-size: 1.3rem; font-weight: 800; margin: 0 0 .6rem; line-height: 1.5; }
.gm-faq__card-desc { position: relative; z-index: 1; color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.gm-faq__card-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .6rem; }
.gm-faq__btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.15rem; border-radius: 12px; font-family: "Changa", sans-serif; font-weight: 700; font-size: .9rem; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.gm-faq__btn svg { width: 18px; height: 18px; fill: currentColor; }
.gm-faq__btn--primary { background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); }
.gm-faq__btn--primary:hover { transform: translateY(-2px); color: #fff; }
.gm-faq__btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.gm-faq__btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

@keyframes gm-faq-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gm-faq-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .gm-faq *,.gm-faq *::before,.gm-faq *::after { animation: none !important; transition: none !important; } }

@media (max-width: 575.98px) {
    .gm-faq { padding-block: 60px; }
    .gm-faq__title { font-size: clamp(1.4rem,6vw,1.85rem); }
    .gm-faq__a { padding-inline-start: 1.2rem; }
}

/* ============================================================
   GM Testimonials — premium quote cards
   ============================================================ */

.gm-tm,
.gm-tm *,
.gm-tm *::before,
.gm-tm *::after { box-sizing: border-box; }

.gm-tm {
    --gmt-bg: #0B1224;
    --gmt-bg-2: #111A33;
    --gmt-text: #FFFFFF;
    --gmt-text-soft: rgba(255,255,255,.78);
    --gmt-text-muted: rgba(255,255,255,.55);
    --gmt-brand: #0DB39E;
    --gmt-brand-2: #2FE6CB;
    --gmt-amber: #FFB703;
    --gmt-card: rgba(255,255,255,.04);
    --gmt-border: rgba(255,255,255,.10);
    --gmt-radius: 24px;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(13,179,158,.20) 0, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255,183,3,.10) 0, transparent 40%),
        linear-gradient(160deg, var(--gmt-bg) 0%, var(--gmt-bg-2) 100%);
    color: var(--gmt-text);
    font-family: "Tajawal", "Changa", system-ui, sans-serif;
    direction: rtl;
    padding-block: clamp(72px,10vh,120px);
}
.gm-tm ul { list-style: none; padding: 0; margin: 0; }
.gm-tm p { margin: 0; }

.gm-tm__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gm-tm__blob { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.gm-tm__blob--a { background: rgba(13,179,158,.30); top: -200px; inset-inline-end: -160px; }
.gm-tm__blob--b { background: rgba(255,183,3,.18); bottom: -200px; inset-inline-start: -160px; }
.gm-tm__quote { position: absolute; top: 5%; inset-inline-start: 5%; width: 240px; height: 240px; color: rgba(13,179,158,.07); }
.gm-tm__quote svg { width: 100%; height: 100%; fill: currentColor; }

.gm-tm__inner { position: relative; z-index: 1; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }

.gm-tm__head { text-align: center; max-width: 820px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); animation: gm-tm-up .9s cubic-bezier(.16,1,.3,1) both; }
.gm-tm__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: "Changa", sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmt-brand-2); background: rgba(13,179,158,.14); border: 1px solid rgba(13,179,158,.30); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-tm__eyebrow-line { width: 22px; height: 2px; background: var(--gmt-brand-2); border-radius: 2px; }
.gm-tm__title { font-family: "Changa", sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; color: #fff; }
.gm-tm__title-accent { background: linear-gradient(120deg, var(--gmt-brand) 0%, var(--gmt-brand-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-tm__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmt-text-soft); line-height: 1.95; }

.gm-tm__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .gm-tm__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .gm-tm__grid { grid-template-columns: repeat(4,1fr); } }
.gm-tm__item { display: flex; animation: gm-tm-up .9s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--gm-tm-delay,0ms); }

.gm-tm__card { position: relative; width: 100%; background: var(--gmt-card); border: 1px solid var(--gmt-border); border-radius: var(--gmt-radius); padding: clamp(1.5rem,2.5vw,1.9rem); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; flex-direction: column; gap: 1rem; overflow: hidden; transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease; }
.gm-tm__card:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(13,179,158,.35); }
.gm-tm__card::after { content: ""; position: absolute; bottom: 0; inset-inline-end: 0; width: 160px; height: 160px; background: radial-gradient(circle at 100% 100%, rgba(13,179,158,.20) 0, transparent 70%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.gm-tm__card:hover::after { opacity: 1; }

.gm-tm__mark { position: absolute; top: 1rem; inset-inline-end: 1rem; width: 40px; height: 40px; color: rgba(13,179,158,.30); }
.gm-tm__mark svg { width: 100%; height: 100%; fill: currentColor; }

.gm-tm__stars { display: inline-flex; gap: .15rem; }
.gm-tm__star { width: 18px; height: 18px; fill: rgba(255,255,255,.18); transition: fill .25s ease; }
.gm-tm__star.is-on { fill: var(--gmt-amber); filter: drop-shadow(0 4px 8px rgba(255,183,3,.4)); }

.gm-tm__quote-text { font-size: .96rem; color: var(--gmt-text-soft); line-height: 1.95; flex: 1; }

.gm-tm__person { display: flex; align-items: center; gap: .75rem; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.08); }
.gm-tm__avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: "Changa", sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; background: linear-gradient(135deg, var(--gmt-brand), var(--gmt-brand-2)); box-shadow: 0 8px 20px -8px rgba(13,179,158,.5); }
.gm-tm__person-text { display: flex; flex-direction: column; line-height: 1.35; flex: 1; min-width: 0; }
.gm-tm__name { font-family: "Changa", sans-serif; font-size: .95rem; color: #fff; font-weight: 700; }
.gm-tm__role { font-size: .76rem; color: var(--gmt-text-muted); }
.gm-tm__source { width: 28px; height: 28px; object-fit: contain; opacity: .85; }

@keyframes gm-tm-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .gm-tm *,.gm-tm *::before,.gm-tm *::after { animation: none !important; transition: none !important; } }

@media (max-width: 575.98px) {
    .gm-tm { padding-block: 60px; }
    .gm-tm__title { font-size: clamp(1.4rem,6vw,1.85rem); }
    .gm-tm__quote { width: 160px; height: 160px; }
}

/* ============================================================
   GM Contact — get in touch
   ============================================================ */

.gm-contact,
.gm-contact *,
.gm-contact *::before,
.gm-contact *::after { box-sizing: border-box; }

.gm-contact {
    --gmc-bg: #FFFFFF;
    --gmc-bg-2: #F6F7FB;
    --gmc-text: #0F172A;
    --gmc-text-soft: #475569;
    --gmc-text-muted: #64748B;
    --gmc-brand: #0DB39E;
    --gmc-brand-2: #2FE6CB;
    --gmc-wa: #25D366;
    --gmc-card: #FFFFFF;
    --gmc-border: #E2E8F0;
    --gmc-radius: 22px;
    --gmc-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.16);
    --gmc-shadow-lg: 0 30px 60px -22px rgba(15,23,42,.28);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(13,179,158,.06) 0, transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(255,183,3,.05) 0, transparent 38%),
        var(--gmc-bg);
    color: var(--gmc-text);
    font-family: "Tajawal", "Changa", system-ui, sans-serif;
    direction: rtl;
    padding-block: clamp(72px,10vh,120px);
}
.gm-contact a { text-decoration: none; color: inherit; }
.gm-contact ul { list-style: none; padding: 0; margin: 0; }
.gm-contact p { margin: 0; }

.gm-contact__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gm-contact__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.gm-contact__blob--a { background: rgba(13,179,158,.18); top: -180px; inset-inline-start: -160px; }
.gm-contact__blob--b { background: rgba(255,183,3,.14); bottom: -200px; inset-inline-end: -160px; }

.gm-contact__inner { position: relative; z-index: 1; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }

.gm-contact__head { text-align: center; max-width: 820px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); animation: gm-c-up .9s cubic-bezier(.16,1,.3,1) both; }
.gm-contact__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: "Changa", sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmc-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-contact__eyebrow-line { width: 22px; height: 2px; background: var(--gmc-brand); border-radius: 2px; }
.gm-contact__title { font-family: "Changa", sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; }
.gm-contact__title-accent { background: linear-gradient(120deg, var(--gmc-brand), var(--gmc-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-contact__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmc-text-soft); line-height: 1.95; }

.gm-contact__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .gm-contact__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .gm-contact__grid { grid-template-columns: repeat(4,1fr); } }
.gm-contact__item { display: flex; animation: gm-c-up .9s cubic-bezier(.16,1,.3,1) both; animation-delay: var(--gm-c-delay,0ms); }

.gm-contact__card { position: relative; width: 100%; background: var(--gmc-card); border: 1px solid var(--gmc-border); border-radius: var(--gmc-radius); padding: clamp(1.5rem,2.5vw,1.85rem); display: flex; flex-direction: column; gap: .55rem; box-shadow: var(--gmc-shadow-sm); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; overflow: hidden; }
.gm-contact__card--link { cursor: pointer; }
.gm-contact__card:hover { transform: translateY(-6px); border-color: rgba(13,179,158,.32); box-shadow: var(--gmc-shadow-lg); }
.gm-contact__card::after { content: ""; position: absolute; bottom: 0; inset-inline-end: 0; width: 140px; height: 140px; background: radial-gradient(circle at 100% 100%, rgba(13,179,158,.18) 0, transparent 70%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.gm-contact__card:hover::after { opacity: 1; }

.gm-contact__icon { display: inline-flex; width: 54px; height: 54px; border-radius: 16px; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(13,179,158,.16), rgba(47,230,203,.10)); border: 1px solid rgba(13,179,158,.22); color: var(--gmc-brand); margin-bottom: .55rem; box-shadow: 0 12px 28px -12px rgba(13,179,158,.40); transition: background .35s ease, color .35s ease, transform .35s ease; }
.gm-contact__icon svg { width: 26px; height: 26px; fill: currentColor; }
.gm-contact__card:hover .gm-contact__icon { transform: translateY(-2px) rotate(-4deg) scale(1.04); background: linear-gradient(135deg, var(--gmc-brand), var(--gmc-brand-2)); color: #fff; }

.gm-contact__name { font-family: "Changa", sans-serif; font-size: 1.08rem; font-weight: 700; line-height: 1.5; color: var(--gmc-text); margin: 0; }
.gm-contact__desc { font-size: .94rem; color: var(--gmc-text-soft); line-height: 1.85; word-break: break-word; }
.gm-contact__cta { margin-top: auto; padding-top: .55rem; display: inline-flex; align-items: center; gap: .35rem; font-family: "Changa", sans-serif; font-size: .85rem; font-weight: 700; color: var(--gmc-brand); }
.gm-contact__cta svg { width: 16px; height: 16px; fill: currentColor; transform: scaleX(-1); transition: transform .3s ease; }
.gm-contact__card:hover .gm-contact__cta svg { transform: scaleX(-1) translateX(3px); }

.gm-contact__card--wa { background: linear-gradient(155deg, var(--gmc-wa) 0%, #128C7E 100%); color: #fff; border-color: transparent; }
.gm-contact__card--wa .gm-contact__name,
.gm-contact__card--wa .gm-contact__desc,
.gm-contact__card--wa .gm-contact__cta { color: #fff; }
.gm-contact__card--wa .gm-contact__icon { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.30); color: #fff; }
.gm-contact__card--wa:hover .gm-contact__icon { background: rgba(255,255,255,.30); color: #fff; }
.gm-contact__card--wa::after { background: radial-gradient(circle at 100% 100%, rgba(255,255,255,.18) 0, transparent 70%); }
.gm-contact__card--wa:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 30px 60px -22px rgba(37,211,102,.55); }

@keyframes gm-c-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .gm-contact *,.gm-contact *::before,.gm-contact *::after { animation: none !important; transition: none !important; } }

@media (max-width: 575.98px) {
    .gm-contact { padding-block: 60px; }
    .gm-contact__title { font-size: clamp(1.4rem,6vw,1.85rem); }
}

/********************************************************
 * ADDITIONAL STYLES
 ********************************************************/
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../imgs/carousel-1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
    font-family: "Changa", sans-serif !important;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--brand-light);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--brand-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/




/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--brand-light);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--brand-light);
    background: var(--brand-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--brand-light);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--brand-light);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
    font-family: "Changa", sans-serif !important;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--brand-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--brand-light);
    background: var(--brand-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--brand-primary);
    color: var(--brand-light);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--brand-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--brand-primary);
    color: var(--brand-light);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--brand-primary);
}
/*** Blog End ***/


/* News Listing
================================================== */
.breadcrumb-item + .breadcrumb-item::before {
	float: right !important;
}
.post {
	border-bottom: 1px solid #dadada;
	padding: 0 0 30px;
	margin: 0 0 45px;
  }

  .post.last {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
  }

  .post-body {
	padding: 20px 0;
  }

  .entry-header .entry-title {
	font-size: 24px;
	margin: 5px 0 15px;
	position: relative;
	line-height: 34px;
	font-family: "Changa", sans-serif !important;
  }

  .entry-header .entry-title a {
	color: #303030;
  }


  .entry-header .entry-title a:hover {
	color: var(--brand-primary);;
  }

  .post-single .entry-header .entry-title {
	font-size: 28px;
  }

  /* Meta */
  .post-meta {
	padding-bottom: 10px;
  }

  .post-meta a {
	color: #303030;
  }

  .post-meta a:hover {
	color: var(--brand-primary);
  }

  .post-meta span {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #dadada;
	line-height: 12px;
	display: inline-block;
  }

  .post-meta i {
	color: #bbb;
	margin-right: 3px;
  }

  .post-meta .post-comment {
	border-right: 0;
  }

  .post-meta .post-comment .comments-link {
	margin-left: 5px;
  }

  .entry-content {
	padding: 5px 10px;
  }

  .post-footer .btn.btn-primary {
	font-size: 12px;
	margin-top: 10px;
  }

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
    font-family: "Changa", sans-serif !important;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--brand-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--brand-light);
    border-style: double;
    background: var(--brand-light);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--brand-primary);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--brand-primary);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--brand-primary);
    color: var(--brand-light);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--brand-light);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--brand-primary);
    color: var(--brand-light);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--brand-light);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--brand-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--brand-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--brand-light);
    transition: 0.5s;
}

/*** Testimonial End ***/

/* =========================
   GENERAL SINGLE WRAPPER
   ========================= */

#single-wrapper {
    background-color: #f5f7fb;
}

.single-post-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* =========================
   HERO / BREADCRUMB SECTION
   ========================= */

.single-post-hero {
    position: relative;
    background: linear-gradient(135deg, #002b5c, #01579b);
    color: #ffffff;
    overflow: hidden;
}

.single-post-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;
}

.single-post-hero .container {
    position: relative;
    z-index: 2;
}

.single-post-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

.single-post-hero .badge {
    font-size: 0.85rem;
}

/* breadcrumb override for hero */
.single-post-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.single-post-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.single-post-hero .breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.single-post-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.single-post-hero .breadcrumb-item.active {
    color: #ffca28; /* Ù…Ù…ÙƒÙ† ØªØ¹Ø¯Ù„Ù‡Ø§ Ø­Ø³Ø¨ Ø£Ù„ÙˆØ§Ù† Ø§Ù„Ø¨Ø±Ø§Ù†Ø¯ */
}

/* =========================
   MAIN ARTICLE CARD
   ========================= */

.premium-post-card {
    border-radius: 1.25rem;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.premium-post-card .single-featured-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.premium-post-card .single-featured-image {
    border-radius: 1rem;
    overflow: hidden;
}

/* Content typography */
.kayan-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #1f2933;
}

.kayan-content p {
    margin-bottom: 1.1rem;
}

.kayan-content h2,
.kayan-content h3,
.kayan-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #102a43;
}

.kayan-content h2 {
    font-size: 1.35rem;
}

.kayan-content h3 {
    font-size: 1.18rem;
}

/* Default lists inside content */
.kayan-content ul,
.kayan-content ol {
    margin-bottom: 1.2rem;
    padding-right: 1.2rem; /* RTL */
}

.kayan-content li {
    margin-bottom: 0.35rem;
}

/* =========================
   POST META (CATEGORY / TAGS TOP)
   ========================= */

.single-post-meta {
    border-bottom: 1px solid rgba(15,23,42,0.06);
    padding-bottom: 0.75rem;
}

/* =========================
   TAGS PILL STYLE (BOTTOM)
   ========================= */

.single-post-tags h3 {
    font-weight: 700;
    color: #102a43;
}

.single-post-tags .badge {
    background-color: #f3f4ff;
    border-color: #d0d3f0;
    font-size: 0.85rem;
    transition: all 0.2s ease-in-out;
}

.single-post-tags .badge:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    border-color: #1d4ed8;
}

/* =========================
   AUTHOR BOX
   ========================= */

.single-author-box {
    border-radius: 1rem;
    border: 1px solid rgba(15,23,42,0.06);
}

.single-author-box .single-author-avatar img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

/* =========================
   POST NAVIGATION
   ========================= */

.single-post-nav {
    border-top: 1px solid rgba(15,23,42,0.06);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.single-post-nav a {
    color: #1d4ed8;
    text-decoration: none;
}

.single-post-nav a:hover {
    text-decoration: underline;
}

/* =========================
   RELATED POSTS
   ========================= */

.single-related-posts h2 {
    font-weight: 700;
    color: #102a43;
}

.related-post-card {
    border-radius: 0.9rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15,23,42,0.10);
    border-color: rgba(55,65,81,0.25);
}

.related-post-card h3 {
    font-weight: 600;
}

.related-post-card p {
    min-height: 2.7em;
}

/* =========================
   SIDEBAR
   ========================= */

.single-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 991.98px) {
    .single-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* =========================
   KAYAN CONTENT UTILITIES
   (Ø§Ù„Ù„Ù‰ Ø¨Ù†Ø³ØªØ®Ø¯Ù…Ù‡Ø§ Ø¬ÙˆÙ‡ Ø§Ù„Ù…Ù‚Ø§Ù„Ø§Øª)
   ========================= */

/* Checklist style bullets */
.kayan-checklist {
    list-style: none;
    margin: 0 0 1.2rem 0;
    padding: 0;
}

.kayan-checklist li {
    position: relative;
    padding-right: 1.8rem; /* RTL */
    margin-bottom: 0.55rem;
}

.kayan-checklist li::before {
    content: "âœ“";
    position: absolute;
    right: 0;
    top: 0.15rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e0ecff;
    color: #1d4ed8;
}

/* Note / info box */
.kayan-note {
    background-color: #f3f4ff;
    border-radius: 0.9rem;
    padding: 1rem 1.25rem;
    border: 1px solid #d0d3f0;
    font-size: 0.95rem;
    color: #111827;
}

.kayan-note-center {
    text-align: center;
}

/* Steps (ordered list) */
.kayan-steps {
    counter-reset: kayan-step;
    list-style: none;
    margin: 0 0 1.2rem 0;
    padding: 0;
}

.kayan-steps li {
    counter-increment: kayan-step;
    position: relative;
    padding-right: 2.2rem; /* RTL */
    margin-bottom: 0.65rem;
}

.kayan-steps li::before {
    content: counter(kayan-step);
    position: absolute;
    right: 0;
    top: 0.1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1d4ed8;
    color: #ffffff;
}

/* Gallery highlight (3 ØµÙˆØ± ÙÙŠ ØµÙ ÙˆØ§Ø­Ø¯) */
.kayan-gallery-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.kayan-gallery-highlight figure {
    margin: 0;
    border-radius: 0.9rem;
    overflow: hidden;
    background-color: #f9fafb;
    border: 1px solid rgba(15,23,42,0.04);
}

.kayan-gallery-highlight img {
    display: block;
    width: 100%;
    height: auto;
}

.kayan-gallery-highlight figcaption {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    color: #4b5563;
}

/* Single image card */
.kayan-image-card {
    border-radius: 1rem;
    background-color: #f9fafb;
    border: 1px solid rgba(15,23,42,0.06);
    padding: 0.75rem;
    margin: 1.5rem 0;
    text-align: center;
}

.kayan-image-card img {
    border-radius: 0.8rem;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
}

.kayan-image-card figcaption {
    font-size: 0.85rem;
    color: #4b5563;
}

/* =========================
   PRICING TABLE (Ù„Ùˆ Ø§Ø³ØªØ®Ø¯Ù…ØªÙ‡ ÙÙŠ Ø§Ù„Ø¨ÙˆØ³ØªØ§Øª)
   ========================= */

.kayan-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.kayan-pricing-table thead {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
}

.kayan-pricing-table th,
.kayan-pricing-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.kayan-pricing-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.kayan-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.kayan-pricing-table th:first-child,
.kayan-pricing-table td:first-child {
    text-align: right; /* RTL */
}

/* =========================
   RESPONSIVE TWEAKS
   ========================= */

@media (max-width: 767.98px) {

    .single-post-hero h1 {
        font-size: 1.6rem;
    }

    .premium-post-card {
        padding: 1.5rem;
    }

    .kayan-gallery-highlight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-post-meta {
        flex-direction: column;
        gap: 0.4rem;
    }
}


/********************************************************
 * FOOTER â€“ Gomhoria Express
 ********************************************************/

/* Main footer wrapper */
.container-fluid.footer {
    background: radial-gradient(circle at top, #020617, #020617 60%, #020617);
    color: #e5e7eb;
    font-family: "Changa", sans-serif !important;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

/* Inner footer items */
.footer .footer-item {
    color: #e5e7eb;
}

/* Paragraphs */
.footer .footer-item p {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* Logo spacing */
.footer .footer-item img {
    margin-bottom: 0.75rem;
}

/* Headings */
.footer .footer-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f9fafb;
}

/* Footer links (pages / categories) */
.footer .footer-item a {
    display: block;
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer .footer-item a:hover {
    color: var(--brand-primary);
    transform: translateX(-3px);
}

/* Footer menu lists (if using wp_nav_menu with <ul>) */
.footer .footer-links li {
    margin-bottom: 0.35rem;
}

.footer .footer-links li a {
    display: inline-flex;
    align-items: center;
}

/* Icons inside links */
.footer .footer-item i.fa-angle-right {
    font-size: 0.8rem;
}

/* Contact rows */
.footer .footer-item .d-flex.align-items-center i {
    font-size: 1rem;
}

/* Social buttons (rounded circles) */
.footer .btn.btn-primary.btn-sm-square {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 999px !important;
    background: rgba(13, 179, 158, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.footer .btn.btn-primary.btn-sm-square i {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.footer .btn.btn-primary.btn-sm-square:hover {
    background: var(--brand-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Copyright bar */
.container-fluid.copyright {
    background: #020617;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    font-family: "Changa", sans-serif !important;
}

.container-fluid.copyright .text-body {
    font-size: 0.9rem;
}

.container-fluid.copyright span,
.container-fluid.copyright a {
    color: #9ca3af;
}

.container-fluid.copyright a.border-bottom {
    border-color: rgba(156, 163, 175, 0.6) !important;
}

.container-fluid.copyright a.border-bottom:hover {
    color: #f9fafb;
    border-color: var(--brand-primary) !important;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .container-fluid.footer .footer-item {
        text-align: right;
    }

    .footer .footer-item a {
        margin-bottom: 0.25rem;
    }
}


/********************************************************
 * FLOATING CONTACT BUTTONS â€“ Gomhoria Express
 ********************************************************/

/* Container: fixed bottom-right on desktop */
.footer-contact-btns {
    position: fixed;
    inset-inline-end: 1.4rem;   /* right in RTL */
    bottom: 1.4rem;
    z-index: 999;
    pointer-events: none;       /* inner handles clicks */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    visibility: visible !important; /* override old visibility:hidden */
    font-family: "Changa", sans-serif !important;
}

/* Visible state (will be toggled by JS) */
.footer-contact-btns.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inner wrapper */
.footer-contact-btns .floating-contact-inner {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
}

/* Base button style */
.footer-contact-btns a.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse; /* icon on the right in RTL */
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f9fafb;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(15, 23, 42, 0.8);
    position: relative;
    overflow: hidden;
}

/* Phone button colors */
.footer-contact-btns .floating-btn-phone {
    background: linear-gradient(135deg, var(--brand-primary, #0DB39E), #059669);
}

/* WhatsApp button colors */
.footer-contact-btns .floating-btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Icon circle */
.footer-contact-btns .floating-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-btns .floating-btn-icon i {
    font-size: 1rem;
}

/* Label text */
.footer-contact-btns .floating-btn-label {
    white-space: nowrap;
}

/* Subtle shine effect on hover */
.footer-contact-btns a.floating-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.22),
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.12)
    );
    opacity: 0;
    transform: translateX(40%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover effects (desktop) */
@media (min-width: 768px) {
  .footer-contact-btns a.floating-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 45px rgba(15, 23, 42, 0.75);
  }

  .footer-contact-btns a.floating-btn:hover::before {
      opacity: 1;
      transform: translateX(-10%);
  }
}

/* Make sure old bootstrap theme styles don't mess our layout */
.footer-contact-btns a {
    height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* But re-apply our own for .floating-btn */
.footer-contact-btns a.floating-btn {
    padding: 0.45rem 0.95rem;
}

/* Mobile layout: full-width bar with 2 buttons */
@media (max-width: 767.98px) {
    .footer-contact-btns {
        inset-inline: 0.75rem;
        bottom: 0.75rem;
    }

    .footer-contact-btns .floating-contact-inner {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-contact-btns a.floating-btn {
        flex: 1;
        justify-content: center;
        border-radius: 999px;
        font-size: 0.9rem;
        padding-inline: 0.75rem;
    }

    .footer-contact-btns .floating-btn-label {
        font-size: 0.88rem;
    }

    .footer-contact-btns .floating-btn-icon {
        width: 30px;
        height: 30px;
    }
}

/* ============================================================
   GM Hero — premium, fully self-contained
   - No Bootstrap grid dependency
   - No FontAwesome (uses inline SVG)
   - All selectors prefixed with .gm-hero (no leakage)
   ============================================================ */

.gm-hero,
.gm-hero *,
.gm-hero *::before,
.gm-hero *::after {
    box-sizing: border-box;
}

.gm-hero {
    --gmh-bg-1: #0B1224;
    --gmh-bg-2: #111A33;
    --gmh-brand: #0DB39E;
    --gmh-brand-2: #2FE6CB;
    --gmh-amber: #FFB703;
    --gmh-wa: #25D366;
    --gmh-wa-dark: #1db954;
    --gmh-text: #ffffff;
    --gmh-text-soft: rgba(255,255,255,0.74);
    --gmh-text-muted: rgba(255,255,255,0.50);
    --gmh-card-bg: rgba(255,255,255,0.06);
    --gmh-card-border: rgba(255,255,255,0.14);
    --gmh-radius-lg: 28px;
    --gmh-radius-md: 18px;
    --gmh-pill: 999px;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    color: var(--gmh-text);
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(13,179,158,0.20) 0%, transparent 55%),
        radial-gradient(100% 70% at 0% 100%, rgba(255,183,3,0.12) 0%, transparent 55%),
        linear-gradient(180deg, var(--gmh-bg-1) 0%, var(--gmh-bg-2) 100%);
    font-family: "Tajawal", "Changa", system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    text-align: start;
}

.gm-hero a { text-decoration: none; }
.gm-hero ul { list-style: none; padding: 0; margin: 10px; }
.gm-hero p { margin: 0; }

/* ---------- Decorative background ---------- */
.gm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.gm-hero__glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    will-change: transform;
}
.gm-hero__glow--teal {
    background: rgba(13,179,158,0.55);
    top: -140px;
    right: -120px;
    animation: gmh-float-a 14s ease-in-out infinite alternate;
}
.gm-hero__glow--amber {
    background: rgba(255,183,3,0.40);
    bottom: -180px;
    left: -140px;
    animation: gmh-float-b 18s ease-in-out infinite alternate;
}
.gm-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 90%);
    opacity: 0.6;
}

@keyframes gmh-float-a {
    from { transform: translate(0,0); }
    to   { transform: translate(-30px, 24px); }
}
@keyframes gmh-float-b {
    from { transform: translate(0,0); }
    to   { transform: translate(28px, -28px); }
}

/* ---------- Layout ---------- */
.gm-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
    padding-block: clamp(110px, 14vh, 150px) clamp(64px, 9vh, 110px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (min-width: 992px) {
    .gm-hero__inner {
        grid-template-columns: 1.05fr 1fr;
    }
}

/* ---------- Text column ---------- */
.gm-hero__text {
    text-align: start; /* RTL = right */
}

.gm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gmh-brand);
    background: rgba(13,179,158,0.10);
    border: 1px solid rgba(13,179,158,0.30);
    border-radius: var(--gmh-pill);
    padding: 0.45rem 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}
.gm-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gmh-brand);
    box-shadow: 0 0 0 4px rgba(13,179,158,0.18);
    flex-shrink: 0;
    animation: gmh-pulse 2.4s ease-in-out infinite;
}
@keyframes gmh-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(13,179,158,0.18); }
    50%      { box-shadow: 0 0 0 7px rgba(13,179,158,0.06); }
}

.gm-hero__h1 {
    font-family: "Changa", sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
}
.gm-hero__h1-accent {
    background: linear-gradient(120deg, var(--gmh-brand) 0%, var(--gmh-brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.gm-hero__sub {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--gmh-text-soft);
    line-height: 1.95;
    max-width: 56ch;
    margin: 0 0 1.6rem;
}

.gm-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.75rem;
}
.gm-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    background: var(--gmh-card-bg);
    border: 1px solid var(--gmh-card-border);
    border-radius: var(--gmh-pill);
    padding: 0.4rem 0.9rem;
    white-space: nowrap;
    line-height: 1;
}

/* CTAs */
.gm-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1rem;
}
.gm-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Changa", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 0.95rem 1.6rem;
    border-radius: var(--gmh-pill);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.gm-hero__btn--primary {
    color: #fff;
    background: var(--gmh-wa);
    box-shadow: 0 12px 28px rgba(37,211,102,0.38), inset 0 -2px 0 rgba(0,0,0,0.10);
}
.gm-hero__btn--primary:hover {
    background: var(--gmh-wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37,211,102,0.50);
    color: #fff;
}
.gm-hero__btn--primary:focus-visible {
    outline: 3px solid var(--gmh-wa);
    outline-offset: 3px;
}
.gm-hero__btn--ghost {
    color: #fff;
    background: transparent;
    border-color: rgba(255,255,255,0.40);
}
.gm-hero__btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}
.gm-hero__btn--ghost:focus-visible {
    outline: 3px solid rgba(255,255,255,0.65);
    outline-offset: 3px;
}

.gm-hero__reassure {
    font-size: 0.82rem;
    color: var(--gmh-text-muted);
}

/* SVG sizing */
.gm-hero__svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
    fill: currentColor;
    display: inline-block;
}
.gm-hero__svg--xs {
    width: 14px;
    height: 14px;
    color: var(--gmh-brand);
}

/* ---------- Visual column ---------- */
.gm-hero__visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
}

.gm-hero__card {
    position: relative;
    border-radius: var(--gmh-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0a0f1f;
    border: 1px solid var(--gmh-card-border);
    box-shadow:
        0 30px 60px -20px rgba(0,0,0,0.55),
        0 18px 36px -18px rgba(13,179,158,0.30);
    transform: perspective(1200px) rotateY(0deg);
}

.gm-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}
.gm-hero__card:hover .gm-hero__img { transform: scale(1.06); }

.gm-hero__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 35%);
    pointer-events: none;
}

/* Floating badges */
.gm-hero__badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255,255,255,0.96);
    color: #0F172A;
    border-radius: var(--gmh-radius-md);
    padding: 0.6rem 0.95rem 0.6rem 0.7rem;
    box-shadow: 0 18px 40px -12px rgba(8,12,26,0.45);
    border: 1px solid rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}
.gm-hero__badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(13,179,158,0.14);
    color: var(--gmh-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gm-hero__badge-icon--wa {
    background: rgba(37,211,102,0.16);
    color: var(--gmh-wa);
}
.gm-hero__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: start;
}
.gm-hero__badge-text strong {
    font-family: "Changa", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
}
.gm-hero__badge-text small {
    font-size: 0.72rem;
    color: rgba(15,23,42,0.65);
    margin-top: 2px;
}

.gm-hero__badge--top {
    top: 18px;
    right: -22px;
    animation: gmh-bob 6s ease-in-out infinite;
}
.gm-hero__badge--mid {
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    animation: gmh-bob-mid 7s ease-in-out infinite;
}
.gm-hero__badge--bot {
    bottom: 22px;
    right: 14%;
    animation: gmh-bob 8s ease-in-out infinite reverse;
}
@keyframes gmh-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes gmh-bob-mid {
    0%, 100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 8px)); }
}

/* ---------- Reveal animation ---------- */
.gm-hero__eyebrow,
.gm-hero__h1,
.gm-hero__sub,
.gm-hero__pills,
.gm-hero__ctas,
.gm-hero__reassure,
.gm-hero__card,
.gm-hero__badge {
    opacity: 0;
    transform: translateY(14px);
    animation: gmh-reveal 0.7s cubic-bezier(.22,.61,.36,1) forwards;
}
.gm-hero__eyebrow  { animation-delay: 50ms; }
.gm-hero__h1       { animation-delay: 130ms; }
.gm-hero__sub      { animation-delay: 210ms; }
.gm-hero__pills    { animation-delay: 290ms; }
.gm-hero__ctas     { animation-delay: 360ms; }
.gm-hero__reassure { animation-delay: 430ms; }
.gm-hero__card     { animation-delay: 200ms; }
.gm-hero__badge--top { animation: gmh-reveal 0.7s cubic-bezier(.22,.61,.36,1) 600ms forwards, gmh-bob 6s ease-in-out 1.3s infinite; }
.gm-hero__badge--mid { animation: gmh-reveal 0.7s cubic-bezier(.22,.61,.36,1) 700ms forwards, gmh-bob-mid 7s ease-in-out 1.4s infinite; }
.gm-hero__badge--bot { animation: gmh-reveal 0.7s cubic-bezier(.22,.61,.36,1) 800ms forwards, gmh-bob 8s ease-in-out 1.5s infinite reverse; }

@keyframes gmh-reveal {
    to { opacity: 1; transform: translateY(0); }
}
.gm-hero__badge--mid {
    /* Override: needs to land at translateY(-50%) not 0 */
}
@keyframes gmh-reveal-mid {
    from { opacity: 0; transform: translateY(calc(-50% + 14px)); }
    to   { opacity: 1; transform: translateY(-50%); }
}
.gm-hero__badge--mid {
    animation: gmh-reveal-mid 0.7s cubic-bezier(.22,.61,.36,1) 700ms forwards, gmh-bob-mid 7s ease-in-out 1.4s infinite;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .gm-hero *,
    .gm-hero *::before,
    .gm-hero *::after {
        animation: none !important;
        transition: none !important;
    }
    .gm-hero__eyebrow,
    .gm-hero__h1,
    .gm-hero__sub,
    .gm-hero__pills,
    .gm-hero__ctas,
    .gm-hero__reassure,
    .gm-hero__card,
    .gm-hero__badge { opacity: 1; transform: none; }
    .gm-hero__badge--mid { transform: translateY(-50%); }
    .gm-hero__img { transform: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
    .gm-hero__visual { margin-top: 1rem; }
    .gm-hero__card { aspect-ratio: 16 / 10; }
    .gm-hero__badge--top { right: -10px; }
    .gm-hero__badge--mid { left: -10px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
    .gm-hero__inner {
        padding-block: 96px 56px;
    }
    .gm-hero__h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
    .gm-hero__pill { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
    .gm-hero__ctas { flex-direction: column; align-items: stretch; }
    .gm-hero__btn { justify-content: center; }
    .gm-hero__sub { max-width: 100%; }

    .gm-hero__visual { max-width: 420px; }
    .gm-hero__card { aspect-ratio: 4 / 3; border-radius: 22px; }
    .gm-hero__badge {
        max-width: 76%;
        padding: 0.5rem 0.75rem 0.5rem 0.55rem;
        gap: 0.5rem;
    }
    .gm-hero__badge-icon { width: 32px; height: 32px; border-radius: 10px; }
    .gm-hero__badge-icon .gm-hero__svg { width: 16px; height: 16px; }
    .gm-hero__badge-text strong { font-size: 0.82rem; }
    .gm-hero__badge-text small { font-size: 0.68rem; }
    .gm-hero__badge--top { top: 10px; right: 8px; }
    .gm-hero__badge--mid {
        top: auto;
        bottom: 50%;
        left: 8px;
        transform: translateY(50%);
    }
    @keyframes gmh-reveal-mid {
        from { opacity: 0; transform: translateY(calc(50% + 14px)); }
        to   { opacity: 1; transform: translateY(50%); }
    }
    @keyframes gmh-bob-mid {
        0%, 100% { transform: translateY(50%); }
        50%      { transform: translateY(calc(50% - 6px)); }
    }
    .gm-hero__badge--bot { bottom: 10px; right: 8px; }
}

/* ============================================================
   /GM Hero
   ============================================================ */
/* ============================================================
   GM Page Hero — shared breadcrumb hero for inner pages
   ============================================================ */
.gm-pg-hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(110px,16vw,180px) clamp(50px,8vw,90px); background: radial-gradient(120% 80% at 100% 0%, rgba(13,179,158,.20) 0, transparent 55%), radial-gradient(100% 70% at 0% 100%, rgba(255,183,3,.10) 0, transparent 55%), linear-gradient(180deg,#0B1224 0%,#111A33 100%); color: #F8FAFC; font-family: "Tajawal","Changa",system-ui,sans-serif; direction: rtl; text-align: center; }
.gm-pg-hero *, .gm-pg-hero *::before, .gm-pg-hero *::after { box-sizing: border-box; }
.gm-pg-hero a { text-decoration: none; color: inherit; }
.gm-pg-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gm-pg-hero__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(120px); opacity: .55; }
.gm-pg-hero__blob--a { background: rgba(13,179,158,.35); top: -180px; inset-inline-end: -160px; }
.gm-pg-hero__blob--b { background: rgba(255,183,3,.20); bottom: -200px; inset-inline-start: -160px; }
.gm-pg-hero__pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .65; }
.gm-pg-hero__inner { position: relative; z-index: 1; max-width: 1100px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }
.gm-pg-hero__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: .8rem; font-weight: 700; color: #2FE6CB; background: rgba(13,179,158,.14); border: 1px solid rgba(13,179,158,.30); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.2rem; backdrop-filter: blur(6px); }
.gm-pg-hero__eyebrow-line { width: 22px; height: 2px; background: #2FE6CB; border-radius: 2px; }
.gm-pg-hero__title { font-family: "Changa",sans-serif; font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; line-height: 1.25; margin: 0 0 1.2rem; color: #fff; }
.gm-pg-hero__crumbs { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: .92rem; color: rgba(248,250,252,.78); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: 999px; padding: .5rem 1.1rem; backdrop-filter: blur(6px); }
.gm-pg-hero__crumbs a { color: #2FE6CB; transition: color .25s ease; }
.gm-pg-hero__crumbs a:hover { color: #fff; }
.gm-pg-hero__sep { color: rgba(255,255,255,.35); }
@media (prefers-reduced-motion: reduce) { .gm-pg-hero * { animation: none !important; transition: none !important; } }

/* ============================================================
   GM About Page — full template redesign
   ============================================================ */
.gm-about-pg { --gmap-bg: #FFFFFF; --gmap-bg-soft: #F6F7FB; --gmap-text: #0F172A; --gmap-soft: #475569; --gmap-muted: #64748B; --gmap-brand: #0DB39E; --gmap-brand-2: #2FE6CB; --gmap-amber: #FFB703; --gmap-border: #E2E8F0; --gmap-radius: 18px; --gmap-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.16); --gmap-shadow-lg: 0 24px 50px -20px rgba(15,23,42,.28); position: relative; color: var(--gmap-text); font-family: "Tajawal","Changa",system-ui,sans-serif; direction: rtl; }
.gm-about-pg *, .gm-about-pg *::before, .gm-about-pg *::after { box-sizing: border-box; }
.gm-about-pg a { text-decoration: none; color: inherit; }
.gm-about-pg p { margin: 0; line-height: 1.95; color: var(--gmap-soft); }
.gm-about-pg ul { list-style: none; margin: 0; padding: 0; }
.gm-about-pg__inner { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }
.gm-about-pg__head { text-align: center; max-width: 800px; margin: 0 auto clamp(2rem,4vw,2.6rem); }
.gm-about-pg__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmap-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-about-pg__eyebrow-line { width: 22px; height: 2px; background: var(--gmap-brand); border-radius: 2px; }
.gm-about-pg__title { font-family: "Changa",sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; color: var(--gmap-text); }
.gm-about-pg__title-accent { background: linear-gradient(120deg,var(--gmap-brand),var(--gmap-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gm-about-pg__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmap-soft); margin-bottom: 1rem; }

/* Intro */
.gm-about-pg__intro { padding-block: clamp(60px,9vw,100px); background: var(--gmap-bg); }
.gm-about-pg__intro-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (min-width: 992px) { .gm-about-pg__intro-grid { grid-template-columns: 1.05fr 1fr; } }
.gm-about-pg__intro-media { position: relative; }
.gm-about-pg__media-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--gmap-shadow-lg); transform: rotate(-1.5deg); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.gm-about-pg__media-frame:hover { transform: rotate(0); }
.gm-about-pg__media-frame img { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.gm-about-pg__media-glow { position: absolute; inset: -2px; background: linear-gradient(135deg,var(--gmap-brand),var(--gmap-brand-2),var(--gmap-amber)); border-radius: 26px; z-index: -1; opacity: .35; filter: blur(28px); }
.gm-about-pg__media-badge { position: absolute; bottom: 24px; inset-inline-start: -18px; background: #fff; border: 1px solid var(--gmap-border); border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--gmap-shadow-lg); display: flex; flex-direction: column; gap: .15rem; max-width: 220px; }
.gm-about-pg__badge-num { font-family: "Changa",sans-serif; font-weight: 800; font-size: 1.6rem; background: linear-gradient(120deg,var(--gmap-brand),var(--gmap-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.gm-about-pg__badge-label { font-size: .82rem; color: var(--gmap-soft); }
.gm-about-pg__media-chip { position: absolute; top: 18px; inset-inline-end: -12px; display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--gmap-border); border-radius: 999px; padding: .5rem 1rem; font-family: "Changa",sans-serif; font-size: .82rem; font-weight: 700; box-shadow: var(--gmap-shadow-sm); }
.gm-about-pg__chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gmap-brand); box-shadow: 0 0 0 4px rgba(13,179,158,.18); }
.gm-about-pg__points { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .85rem; margin: 1.2rem 0 1.6rem; }
.gm-about-pg__points li { display: inline-flex; align-items: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: .9rem; color: var(--gmap-text); }
.gm-about-pg__points li svg { width: 18px; height: 18px; flex: 0 0 auto; fill: var(--gmap-brand); }
.gm-about-pg__cta-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.gm-about-pg__btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.3rem; border-radius: 12px; font-family: "Changa",sans-serif; font-weight: 700; font-size: .95rem; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.gm-about-pg__btn svg { width: 18px; height: 18px; fill: currentColor; }
.gm-about-pg__btn--primary { background: linear-gradient(135deg,var(--gmap-brand),var(--gmap-brand-2)); color: #fff; box-shadow: 0 14px 30px -10px rgba(13,179,158,.55); }
.gm-about-pg__btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 36px -10px rgba(13,179,158,.65); }
.gm-about-pg__btn--ghost { background: #fff; border: 1px solid var(--gmap-border); color: var(--gmap-text); }
.gm-about-pg__btn--ghost:hover { border-color: rgba(13,179,158,.35); color: var(--gmap-brand); transform: translateY(-2px); }
.gm-about-pg__btn--wa { background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); }
.gm-about-pg__btn--wa:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 34px -10px rgba(37,211,102,.6); }

/* Pillars */
.gm-about-pg__pillars { padding-block: clamp(60px,9vw,100px); background: var(--gmap-bg-soft); }
.gm-about-pg__pillars-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .gm-about-pg__pillars-grid { grid-template-columns: repeat(3,1fr); } }
.gm-about-pg__pillar { position: relative; padding: 2rem 1.6rem 1.6rem; background: #fff; border: 1px solid var(--gmap-border); border-radius: var(--gmap-radius); box-shadow: var(--gmap-shadow-sm); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; overflow: hidden; }
.gm-about-pg__pillar::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 64px; height: 4px; background: linear-gradient(90deg,var(--gmap-brand),var(--gmap-brand-2)); border-end-end-radius: 4px; }
.gm-about-pg__pillar:hover { transform: translateY(-4px); border-color: rgba(13,179,158,.35); box-shadow: var(--gmap-shadow-lg); }
.gm-about-pg__pillar-num { position: absolute; top: 1rem; inset-inline-end: 1.2rem; font-family: "Changa",sans-serif; font-weight: 800; font-size: 2.2rem; line-height: 1; color: rgba(13,179,158,.12); }
.gm-about-pg__pillar-icon { width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg,rgba(13,179,158,.14),rgba(47,230,203,.08)); color: var(--gmap-brand); margin-bottom: 1rem; }
.gm-about-pg__pillar-icon svg { width: 26px; height: 26px; fill: currentColor; }
.gm-about-pg__pillar-title { font-family: "Changa",sans-serif; font-size: 1.2rem; font-weight: 800; margin: 0 0 .5rem; color: var(--gmap-text); }

/* Stats */
.gm-about-pg__stats { padding-block: clamp(50px,7vw,80px); background: linear-gradient(135deg,#0B1224,#111A33); color: #F8FAFC; }
.gm-about-pg__stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 768px) { .gm-about-pg__stats-grid { grid-template-columns: repeat(4,1fr); } }
.gm-about-pg__stat { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 1.2rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 16px; backdrop-filter: blur(6px); transition: transform .35s ease, background .35s ease, border-color .35s ease; }
.gm-about-pg__stat:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(13,179,158,.35); }
.gm-about-pg__stat-num { font-family: "Changa",sans-serif; font-weight: 800; font-size: clamp(1.8rem,3vw,2.4rem); background: linear-gradient(120deg,var(--gmap-brand-2),#fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.gm-about-pg__stat-label { font-family: "Changa",sans-serif; font-size: .9rem; color: rgba(248,250,252,.78); text-align: center; }

/* Why */
.gm-about-pg__why { padding-block: clamp(60px,9vw,100px); background: var(--gmap-bg); }
.gm-about-pg__why-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: center; }
@media (min-width: 992px) { .gm-about-pg__why-grid { grid-template-columns: 1.2fr .8fr; } }
.gm-about-pg__why-list { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 1rem; }
@media (min-width: 576px) { .gm-about-pg__why-list { grid-template-columns: 1fr 1fr; } }
.gm-about-pg__why-list li { display: inline-flex; align-items: flex-start; gap: .65rem; padding: .85rem 1rem; background: var(--gmap-bg-soft); border: 1px solid var(--gmap-border); border-radius: 12px; font-size: .95rem; color: var(--gmap-text); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.gm-about-pg__why-list li:hover { transform: translateY(-2px); border-color: rgba(13,179,158,.32); background: #fff; }
.gm-about-pg__why-icon { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(13,179,158,.12); color: var(--gmap-brand); }
.gm-about-pg__why-icon svg { width: 16px; height: 16px; fill: currentColor; }
.gm-about-pg__why-card { position: sticky; top: 90px; padding: 2rem 1.6rem; background: linear-gradient(135deg,#0B1224,#111A33); color: #F8FAFC; border-radius: var(--gmap-radius); box-shadow: var(--gmap-shadow-lg); overflow: hidden; }
.gm-about-pg__why-card::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(13,179,158,.25); filter: blur(80px); top: -80px; inset-inline-end: -80px; }
.gm-about-pg__why-card-icon { position: relative; width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(37,211,102,.18); color: #25D366; margin-bottom: 1rem; }
.gm-about-pg__why-card-icon svg { width: 28px; height: 28px; fill: currentColor; }
.gm-about-pg__why-card-title { font-family: "Changa",sans-serif; font-size: 1.25rem; font-weight: 800; margin: 0 0 .65rem; color: #fff; position: relative; }
.gm-about-pg__why-card p { color: rgba(248,250,252,.82); position: relative; margin-bottom: 1.2rem; }
.gm-about-pg__why-card .gm-about-pg__btn { width: 100%; justify-content: center; position: relative; }
.gm-about-pg__why-card-call { display: block; text-align: center; margin-top: .75rem; font-family: "Changa",sans-serif; font-size: .95rem; color: var(--gmap-brand-2); position: relative; }
.gm-about-pg__why-card-call:hover { color: #fff; }

/* CTA banner */
.gm-about-pg__cta-banner { padding-block: clamp(50px,8vw,90px); background: var(--gmap-bg-soft); }
.gm-about-pg__cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.5rem,3vw,2.5rem); background: linear-gradient(135deg,var(--gmap-brand),var(--gmap-brand-2)); color: #fff; border-radius: 24px; box-shadow: 0 24px 50px -20px rgba(13,179,158,.5); }
.gm-about-pg__cta-text h2 { font-family: "Changa",sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; margin: 0 0 .35rem; color: #fff; }
.gm-about-pg__cta-text p { color: rgba(255,255,255,.92); margin: 0; }
.gm-about-pg__cta-actions { display: inline-flex; flex-wrap: wrap; gap: .55rem; }
.gm-about-pg__cta-actions .gm-about-pg__btn--primary { background: #fff; color: var(--gmap-brand); box-shadow: 0 12px 28px -10px rgba(0,0,0,.25); }
.gm-about-pg__cta-actions .gm-about-pg__btn--primary:hover { color: var(--gmap-brand); background: #fff; }
@media (max-width: 575.98px) { .gm-about-pg__cta-inner { flex-direction: column; text-align: center; } .gm-about-pg__cta-actions { width: 100%; flex-direction: column; } .gm-about-pg__cta-actions .gm-about-pg__btn { justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .gm-about-pg *, .gm-about-pg *::before, .gm-about-pg *::after { animation: none !important; transition: none !important; } }

/* ============================================================
   GM Contact Page — full template redesign
   ============================================================ */
.gm-contact-pg { --gmcp-bg: #F6F7FB; --gmcp-card: #FFFFFF; --gmcp-text: #0F172A; --gmcp-soft: #475569; --gmcp-muted: #64748B; --gmcp-brand: #0DB39E; --gmcp-brand-2: #2FE6CB; --gmcp-amber: #FFB703; --gmcp-wa: #25D366; --gmcp-border: #E2E8F0; --gmcp-radius: 18px; --gmcp-shadow-sm: 0 8px 22px -10px rgba(15,23,42,.16); --gmcp-shadow-lg: 0 24px 50px -20px rgba(15,23,42,.28); position: relative; padding-block: clamp(70px,10vw,110px); background: radial-gradient(circle at 0% 0%, rgba(13,179,158,.08) 0, transparent 35%), radial-gradient(circle at 100% 100%, rgba(255,183,3,.05) 0, transparent 38%), var(--gmcp-bg); color: var(--gmcp-text); font-family: "Tajawal","Changa",system-ui,sans-serif; direction: rtl; }
.gm-contact-pg *, .gm-contact-pg *::before, .gm-contact-pg *::after { box-sizing: border-box; }
.gm-contact-pg a { text-decoration: none; color: inherit; }
.gm-contact-pg p { margin: 0; line-height: 1.85; color: var(--gmcp-soft); }
.gm-contact-pg ul { list-style: none; margin: 0; padding: 0; }
.gm-contact-pg__inner { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }
.gm-contact-pg__head { text-align: center; max-width: 800px; margin: 0 auto clamp(2rem,4vw,3rem); }
.gm-contact-pg__eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: .78rem; font-weight: 700; color: var(--gmcp-brand); background: rgba(13,179,158,.10); border: 1px solid rgba(13,179,158,.22); border-radius: 999px; padding: .45rem 1rem; line-height: 1; letter-spacing: .04em; margin-bottom: 1.1rem; }
.gm-contact-pg__eyebrow-line { width: 22px; height: 2px; background: var(--gmcp-brand); border-radius: 2px; }
.gm-contact-pg__title { font-family: "Changa",sans-serif; font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.4; margin: 0 0 1rem; }
.gm-contact-pg__title-accent { background: linear-gradient(120deg,var(--gmcp-brand),var(--gmcp-brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gm-contact-pg__lede { font-size: clamp(.95rem,1.4vw,1.05rem); color: var(--gmcp-soft); }

/* Methods */
.gm-contact-pg__methods { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
@media (min-width: 576px) { .gm-contact-pg__methods { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .gm-contact-pg__methods { grid-template-columns: repeat(4,1fr); } }
.gm-contact-pg__method { position: relative; display: flex; flex-direction: column; gap: .35rem; padding: 1.6rem 1.4rem; background: var(--gmcp-card); border: 1px solid var(--gmcp-border); border-radius: var(--gmcp-radius); box-shadow: var(--gmcp-shadow-sm); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; overflow: hidden; height: 100%; }
.gm-contact-pg__method::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 60px; height: 3px; background: linear-gradient(90deg,var(--gmcp-brand),var(--gmcp-brand-2)); border-end-end-radius: 4px; }
.gm-contact-pg__method:hover { transform: translateY(-4px); border-color: rgba(13,179,158,.35); box-shadow: var(--gmcp-shadow-lg); }
.gm-contact-pg__method--wa::before { background: linear-gradient(90deg,#25D366,#1ebe5d); }
.gm-contact-pg__method--static { cursor: default; }
.gm-contact-pg__method--static:hover { transform: none; border-color: var(--gmcp-border); box-shadow: var(--gmcp-shadow-sm); }
.gm-contact-pg__method-icon { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg,rgba(13,179,158,.14),rgba(47,230,203,.08)); color: var(--gmcp-brand); margin-bottom: .35rem; transition: transform .35s ease; }
.gm-contact-pg__method-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gm-contact-pg__method:hover .gm-contact-pg__method-icon { transform: scale(1.06); }
.gm-contact-pg__method-icon--wa { background: rgba(37,211,102,.14); color: #25D366; }
.gm-contact-pg__method-icon--mail { background: rgba(255,183,3,.14); color: #d68a00; }
.gm-contact-pg__method-icon--map { background: rgba(99,102,241,.12); color: #6366F1; }
.gm-contact-pg__method-label { font-family: "Changa",sans-serif; font-size: .85rem; font-weight: 700; color: var(--gmcp-muted); }
.gm-contact-pg__method-value { font-family: "Changa",sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--gmcp-text); word-break: break-all; }
.gm-contact-pg__method-value--mail { font-size: .98rem; }
.gm-contact-pg__method-value--addr { font-size: .98rem; line-height: 1.55; }
.gm-contact-pg__method-hint { font-size: .82rem; color: var(--gmcp-muted); }

/* Form + side */
.gm-contact-pg__main-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
@media (min-width: 992px) { .gm-contact-pg__main-grid { grid-template-columns: 1.4fr .8fr; } }
.gm-contact-pg__form-card { padding: clamp(1.5rem,3vw,2.4rem); background: var(--gmcp-card); border: 1px solid var(--gmcp-border); border-radius: 22px; box-shadow: var(--gmcp-shadow-lg); }
.gm-contact-pg__form-title { font-family: "Changa",sans-serif; font-size: clamp(1.2rem,2.4vw,1.65rem); font-weight: 800; margin: 0 0 .6rem; color: var(--gmcp-text); }
.gm-contact-pg__form-sub { color: var(--gmcp-soft); margin-bottom: 1.4rem; }
.gm-contact-pg__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 575.98px) { .gm-contact-pg__form { grid-template-columns: 1fr; } }
.gm-contact-pg__field { display: flex; flex-direction: column; gap: .35rem; grid-column: span 2; }
.gm-contact-pg__field--half { grid-column: span 1; }
.gm-contact-pg__field--full { grid-column: span 2; }
.gm-contact-pg__field label { font-family: "Changa",sans-serif; font-size: .88rem; font-weight: 700; color: var(--gmcp-text); }
.gm-contact-pg__field label span { color: #DC2626; margin-inline-start: 2px; }
.gm-contact-pg__field input, .gm-contact-pg__field select, .gm-contact-pg__field textarea { font-family: "Tajawal",sans-serif; font-size: .98rem; color: var(--gmcp-text); background: #fff; border: 1px solid var(--gmcp-border); border-radius: 12px; padding: .8rem 1rem; transition: border-color .25s ease, box-shadow .25s ease; }
.gm-contact-pg__field input:focus, .gm-contact-pg__field select:focus, .gm-contact-pg__field textarea:focus { outline: none; border-color: var(--gmcp-brand); box-shadow: 0 0 0 3px rgba(13,179,158,.16); }
.gm-contact-pg__field textarea { resize: vertical; min-height: 90px; }
.gm-contact-pg__field input::placeholder, .gm-contact-pg__field textarea::placeholder { color: var(--gmcp-muted); }
.gm-contact-pg__submit { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; padding: 1rem 1.4rem; background: var(--gmcp-wa); color: #fff; border: none; border-radius: 12px; font-family: "Changa",sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); transition: transform .25s ease, box-shadow .25s ease; }
.gm-contact-pg__submit svg { width: 20px; height: 20px; fill: currentColor; }
.gm-contact-pg__submit:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37,211,102,.6); }
.gm-contact-pg__form-note { margin: .75rem 0 0; font-size: .78rem; color: var(--gmcp-muted); text-align: center; }

/* Side cards */
.gm-contact-pg__side { display: flex; flex-direction: column; gap: 1rem; }
.gm-contact-pg__side-card { padding: 1.5rem 1.4rem; background: var(--gmcp-card); border: 1px solid var(--gmcp-border); border-radius: var(--gmcp-radius); box-shadow: var(--gmcp-shadow-sm); }
.gm-contact-pg__side-card h4 { display: inline-flex; align-items: center; gap: .55rem; font-family: "Changa",sans-serif; font-size: 1.05rem; font-weight: 800; margin: 0 0 .85rem; color: var(--gmcp-text); }
.gm-contact-pg__side-card h4 svg { width: 22px; height: 22px; fill: var(--gmcp-brand); }
.gm-contact-pg__hours { display: flex; flex-direction: column; gap: .55rem; }
.gm-contact-pg__hours li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .55rem .75rem; background: var(--gmcp-bg); border-radius: 10px; font-family: "Changa",sans-serif; font-size: .9rem; }
.gm-contact-pg__hours li.is-emergency { background: rgba(13,179,158,.08); color: var(--gmcp-brand); font-weight: 700; }
.gm-contact-pg__side-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .75rem; font-family: "Changa",sans-serif; font-weight: 700; color: var(--gmcp-brand); transition: gap .25s ease; }
.gm-contact-pg__side-link:hover { gap: .55rem; color: var(--gmcp-brand-2); }
.gm-contact-pg__side-card--cta { background: linear-gradient(135deg,#0B1224,#111A33); color: #fff; border-color: transparent; position: relative; overflow: hidden; }
.gm-contact-pg__side-card--cta::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(13,179,158,.30); filter: blur(80px); top: -80px; inset-inline-end: -60px; }
.gm-contact-pg__side-card--cta h4 { color: #fff; position: relative; }
.gm-contact-pg__side-card--cta p { color: rgba(248,250,252,.82); position: relative; margin-bottom: 1rem; }
.gm-contact-pg__btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.3rem; border-radius: 12px; font-family: "Changa",sans-serif; font-weight: 700; font-size: .95rem; transition: transform .25s ease, box-shadow .25s ease; position: relative; }
.gm-contact-pg__btn svg { width: 18px; height: 18px; fill: currentColor; }
.gm-contact-pg__btn--wa { background: var(--gmcp-wa); color: #fff; width: 100%; justify-content: center; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); }
.gm-contact-pg__btn--wa:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 34px -10px rgba(37,211,102,.6); }
.gm-contact-pg__side-call { display: block; text-align: center; margin-top: .75rem; font-family: "Changa",sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--gmcp-brand-2); position: relative; }
.gm-contact-pg__side-call:hover { color: #fff; }

/* Map */
.gm-contact-pg__map { background: var(--gmcp-card); border: 1px solid var(--gmcp-border); border-radius: 22px; padding: clamp(1.25rem,2.5vw,2rem); box-shadow: var(--gmcp-shadow-sm); }
.gm-contact-pg__map-head { text-align: center; max-width: 700px; margin: 0 auto 1.2rem; }
.gm-contact-pg__map-head h3 { font-family: "Changa",sans-serif; font-size: clamp(1.2rem,2.4vw,1.55rem); font-weight: 800; margin: 0 0 .35rem; color: var(--gmcp-text); }
.gm-contact-pg__map-frame { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/8; border: 1px solid var(--gmcp-border); }
.gm-contact-pg__map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05) contrast(.97); }
@media (max-width: 575.98px) { .gm-contact-pg__map-frame { aspect-ratio: 4/3; } }
@media (prefers-reduced-motion: reduce) { .gm-contact-pg *, .gm-contact-pg *::before, .gm-contact-pg *::after { animation: none !important; transition: none !important; } }
/* ============================================================
   GM Footer — premium dark footer with CTA banner + FAB
   ============================================================ */
.gm-footer { --gmf-bg-1: #0B1224; --gmf-bg-2: #111A33; --gmf-text: #F8FAFC; --gmf-soft: rgba(248,250,252,.78); --gmf-muted: rgba(248,250,252,.56); --gmf-brand: #0DB39E; --gmf-brand-2: #2FE6CB; --gmf-amber: #FFB703; --gmf-wa: #25D366; --gmf-border: rgba(255,255,255,.08); --gmf-border-strong: rgba(255,255,255,.14); position: relative; isolation: isolate; overflow: hidden; color: var(--gmf-text); background: linear-gradient(180deg,var(--gmf-bg-1) 0%,var(--gmf-bg-2) 100%); font-family: "Tajawal","Changa",system-ui,sans-serif; direction: rtl; padding-top: clamp(120px,14vw,170px); }
.gm-footer *, .gm-footer *::before, .gm-footer *::after { box-sizing: border-box; }
.gm-footer a { text-decoration: none; color: inherit; transition: color .25s ease, transform .25s ease; }
.gm-footer ul { list-style: none; margin: 0; padding: 0; }
.gm-footer p { margin: 0; line-height: 1.85; }
.gm-footer__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gm-footer__blob { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(130px); opacity: .35; }
.gm-footer__blob--a { background: rgba(13,179,158,.30); top: -180px; inset-inline-end: -160px; }
.gm-footer__blob--b { background: rgba(255,183,3,.18); bottom: -200px; inset-inline-start: -160px; }
.gm-footer__pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .65; }

/* CTA card */
.gm-footer__cta-wrap { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); transform: translateY(-50%); margin-bottom: -60px; }
.gm-footer__cta { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.6rem,3vw,2.4rem); background: linear-gradient(135deg,var(--gmf-brand),var(--gmf-brand-2)); border-radius: 24px; box-shadow: 0 28px 60px -22px rgba(13,179,158,.6); overflow: hidden; }
.gm-footer__cta::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.18); filter: blur(80px); top: -120px; inset-inline-end: -80px; }
.gm-footer__cta-text { position: relative; flex: 1 1 320px; }
.gm-footer__cta-eyebrow { display: inline-flex; align-items: center; gap: .55rem; padding: .4rem .9rem; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.30); border-radius: 999px; font-family: "Changa",sans-serif; font-size: .78rem; font-weight: 700; color: #fff; backdrop-filter: blur(6px); margin-bottom: .85rem; }
.gm-footer__cta-pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.30); animation: gm-footer-pulse 2s ease-in-out infinite; }
.gm-footer__cta-text h2 { font-family: "Changa",sans-serif; font-size: clamp(1.4rem,2.8vw,2rem); font-weight: 800; margin: 0 0 .4rem; color: #fff; }
.gm-footer__cta-text p { color: rgba(255,255,255,.92); }
.gm-footer__cta-actions { position: relative; display: inline-flex; flex-wrap: wrap; gap: .55rem; }
.gm-footer__btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 12px; font-family: "Changa",sans-serif; font-weight: 700; font-size: .95rem; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.gm-footer__btn svg { width: 18px; height: 18px; fill: currentColor; }
.gm-footer__btn--primary { background: #fff; color: var(--gmf-brand); box-shadow: 0 12px 28px -10px rgba(0,0,0,.25); }
.gm-footer__btn--primary:hover { transform: translateY(-2px); color: var(--gmf-brand); box-shadow: 0 18px 36px -10px rgba(0,0,0,.35); }
.gm-footer__btn--wa { background: var(--gmf-wa); color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.5); }
.gm-footer__btn--wa:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 36px -10px rgba(37,211,102,.65); }

/* Inner / grid */
.gm-footer__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: clamp(60px,8vw,90px) clamp(20px,4vw,48px) 0; }
.gm-footer__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3rem); padding-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid var(--gmf-border); }
@media (min-width: 576px) { .gm-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .gm-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.gm-footer__col { display: flex; flex-direction: column; }
.gm-footer__title { font-family: "Changa",sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 1.2rem; position: relative; padding-bottom: .65rem; }
.gm-footer__title::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 36px; height: 3px; border-radius: 2px; background: linear-gradient(90deg,var(--gmf-brand),var(--gmf-brand-2)); }

/* Brand col */
.gm-footer__logo { display: inline-flex; margin-bottom: 1rem; }
.gm-footer__logo img { width: 150px; height: auto; max-height: 90px; object-fit: contain; }
.gm-footer__about { color: var(--gmf-soft); font-size: .95rem; margin-bottom: 1.1rem; }
.gm-footer__trust { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem !important; }
.gm-footer__trust li { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .8rem; background: rgba(255,255,255,.05); border: 1px solid var(--gmf-border-strong); border-radius: 999px; font-family: "Changa",sans-serif; font-size: .78rem; color: var(--gmf-soft); }
.gm-footer__trust li svg { width: 14px; height: 14px; fill: var(--gmf-brand-2); }
.gm-footer__social { display: flex; flex-wrap: wrap; gap: .5rem; }
.gm-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--gmf-border-strong); color: var(--gmf-soft); transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.gm-footer__social a svg { width: 18px; height: 18px; fill: currentColor; }
.gm-footer__social a:hover { transform: translateY(-3px); background: linear-gradient(135deg,var(--gmf-brand),var(--gmf-brand-2)); color: #fff; border-color: transparent; }

/* Links */
.gm-footer__links { display: flex; flex-direction: column; gap: .55rem; }
.gm-footer__links li { display: block; }
.gm-footer__links a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gmf-soft); font-size: .95rem; padding: .25rem 0; }
.gm-footer__links a:hover { color: var(--gmf-brand-2); transform: translateX(-3px); }
.gm-footer__chev { color: var(--gmf-brand); font-weight: 700; transform: scaleX(-1); display: inline-block; }

/* Contacts */
.gm-footer__contacts { display: flex; flex-direction: column; gap: .85rem; }
.gm-footer__contacts li { display: block; }
.gm-footer__contacts li > a, .gm-footer__contacts li > div, .gm-footer__contacts li { display: flex; align-items: flex-start; gap: .65rem; }
.gm-footer__contacts li > a { color: var(--gmf-soft); transition: color .25s ease, transform .25s ease; }
.gm-footer__contacts li > a:hover { color: var(--gmf-brand-2); transform: translateX(-3px); }
.gm-footer__contact-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg,rgba(13,179,158,.18),rgba(47,230,203,.08)); color: var(--gmf-brand-2); border: 1px solid var(--gmf-border-strong); }
.gm-footer__contact-icon svg { width: 18px; height: 18px; fill: currentColor; }
.gm-footer__contact-icon--wa { background: rgba(37,211,102,.18); color: var(--gmf-wa); }
.gm-footer__contact-label { display: block; font-family: "Changa",sans-serif; font-size: .76rem; color: var(--gmf-muted); margin-bottom: .15rem; }
.gm-footer__contact-value { display: block; font-family: "Changa",sans-serif; font-size: .95rem; font-weight: 700; color: #fff; word-break: break-word; }

/* Bottom bar */
.gm-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 1.6rem; font-size: .85rem; color: var(--gmf-muted); }
.gm-footer__copy a { color: var(--gmf-brand-2); }
.gm-footer__copy a:hover { color: #fff; }
.gm-footer__legal { display: inline-flex; flex-wrap: wrap; gap: .25rem .9rem; }
.gm-footer__legal a { color: var(--gmf-soft); position: relative; padding: .15rem 0; }
.gm-footer__legal a:hover { color: var(--gmf-brand-2); }
.gm-footer__legal li:not(:last-child) a::after { content: ""; position: absolute; inset-inline-end: -.5rem; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--gmf-muted); }
.gm-footer__credit a { color: var(--gmf-brand-2); border-bottom: 1px solid currentColor; }
.gm-footer__credit a:hover { color: #fff; }

@keyframes gm-footer-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }

@media (max-width: 575.98px) {
    .gm-footer__bottom { flex-direction: column; text-align: center; }
    .gm-footer__legal { justify-content: center; }
    .gm-footer__cta-actions { width: 100%; }
    .gm-footer__cta-actions .gm-footer__btn { flex: 1 1 0; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .gm-footer *, .gm-footer *::before, .gm-footer *::after { animation: none !important; transition: none !important; } }

/* ============================================================
   GM FAB — floating quick contact + back-to-top
   ============================================================ */
.gm-fab { position: fixed; bottom: 18px; inset-inline-end: 18px; z-index: 999; display: flex; flex-direction: column; gap: .55rem; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
.gm-fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.gm-fab__btn { position: relative; display: inline-flex; align-items: center; gap: .5rem; padding: .65rem .85rem .65rem .75rem; min-width: 50px; height: 50px; background: #fff; color: #0F172A; border: 1px solid rgba(15,23,42,.08); border-radius: 50px; font-family: "Changa",sans-serif; font-weight: 700; font-size: .88rem; box-shadow: 0 14px 30px -12px rgba(15,23,42,.35); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; overflow: hidden; }
.gm-fab__btn svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.gm-fab__label { white-space: nowrap; }
.gm-fab__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(15,23,42,.45); }
.gm-fab__btn--call { background: linear-gradient(135deg,#0DB39E,#2FE6CB); color: #fff; border-color: transparent; }
.gm-fab__btn--call:hover { color: #fff; }
.gm-fab__btn--wa { background: #25D366; color: #fff; border-color: transparent; }
.gm-fab__btn--wa:hover { color: #fff; }
.gm-fab__btn--top { padding: 0; min-width: 50px; width: 50px; justify-content: center; background: #fff; color: #0F172A; }
.gm-fab__pulse { position: absolute; inset: 0; border-radius: 50px; box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: gm-fab-pulse 2.2s ease-out infinite; pointer-events: none; }
@keyframes gm-fab-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 575.98px) {
    .gm-fab { bottom: 14px; inset-inline-end: 14px; gap: .45rem; }
    .gm-fab__btn { height: 46px; min-width: 46px; font-size: 0; padding: 0; width: 46px; justify-content: center; }
    .gm-fab__btn svg { width: 18px; height: 18px; }
    .gm-fab__label { display: none; }
}
@media (prefers-reduced-motion: reduce) { .gm-fab__pulse { animation: none !important; } }
/* ================================================================
   PREMIUM HEADER — gm-topbar, gm-navbar, gm-mobile-menu
   Added: premium redesign v2
================================================================ */

/* ── Scroll Progress Bar ───────────────────────────────────────── */
#gm-scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 99999;
    background: rgba(255,255,255,.08);
}
#gm-scroll-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transition: width .12s linear;
    border-radius: 0 3px 3px 0;
}

/* ── Topbar ─────────────────────────────────────────────────────── */
.gm-topbar {
    display: none;
    background: var(--brand-dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 7px 0;
}
@media (min-width: 992px) { .gm-topbar { display: block; } }

.gm-topbar__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    direction: rtl;
}
.gm-topbar__contacts {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.gm-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.65);
    font-size: .78rem;
    font-family: "Changa", sans-serif;
    text-decoration: none;
    transition: color .25s;
}
.gm-topbar__link i { color: var(--brand-primary); font-size: .78rem; }
.gm-topbar__link:hover,
.gm-topbar__link:focus { color: #fff; }
.gm-topbar__link--wa i { color: #25d366; }
.gm-topbar__link--text { cursor: default; }

.gm-topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-family: "Changa", sans-serif;
    color: var(--brand-accent);
    letter-spacing: .02em;
    white-space: nowrap;
}
.gm-topbar__badge i { font-size: .72rem; }
.gm-topbar__badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: gm-dot-pulse 2s ease-out infinite;
    flex-shrink: 0;
}
@keyframes gm-dot-pulse {
    0%  { box-shadow: 0 0 0 0   rgba(34,197,94,.6); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0);  }
    100%{ box-shadow: 0 0 0 0   rgba(34,197,94,0);  }
}

/* ── Navbar shell ───────────────────────────────────────────────── */
.gm-navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
    padding: 0;
}
/* Scrolled state — injected by JS */
.gm-navbar.is-scrolled {
    position: fixed;
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.gm-navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    min-height: 80px;
    transition: min-height .35s;
}
.gm-navbar.is-scrolled .gm-navbar__container { min-height: 64px; }

/* ── Brand / Logo ───────────────────────────────────────────────── */
.gm-navbar__brand { display: inline-flex; align-items: center; text-decoration: none; }
.gm-navbar__logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    transition: width .35s ease, filter .35s ease;
    filter: brightness(1.05) drop-shadow(0 2px 8px rgba(0,0,0,.18));
}
.gm-navbar.is-scrolled .gm-navbar__logo { width: 115px; }
.gm-navbar__brand:hover .gm-navbar__logo {
    filter: brightness(1.15) drop-shadow(0 4px 14px rgba(13,179,158,.35));
}

/* ── Desktop nav ────────────────────────────────────────────────── */
.gm-navbar__desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 992px) { .gm-navbar__desktop { display: flex; } }

/* wp_nav_menu injects <ul> with class gm-nav */
.gm-nav {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    direction: rtl;
}
.gm-nav > li > a,
.gm-nav > li > .nav-link {
    position: relative;
    display: inline-block;
    font-family: "Changa", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    padding: 28px 16px;
    transition: color .25s;
    white-space: nowrap;
}
.gm-navbar.is-scrolled .gm-nav > li > a,
.gm-navbar.is-scrolled .gm-nav > li > .nav-link { padding: 22px 16px; }

/* Animated underline */
.gm-nav > li > a::after,
.gm-nav > li > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px; right: 16px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
    border-radius: 2px;
    transition: width .3s ease;
}
.gm-navbar.is-scrolled .gm-nav > li > a::after { bottom: 6px; }
.gm-nav > li:hover > a::after,
.gm-nav > li:hover > .nav-link::after,
.gm-nav > li.current-menu-item > a::after,
.gm-nav > li.current-menu-item > .nav-link::after,
.gm-nav > li.current_page_item > a::after { width: calc(100% - 32px); }

.gm-nav > li > a:hover,
.gm-nav > li > .nav-link:hover,
.gm-nav > li.current-menu-item > a,
.gm-nav > li.current_page_item > a { color: #fff; }

/* Dropdown */
.gm-nav .dropdown-menu,
.gm-nav .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--brand-dark);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s, visibility .25s;
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    z-index: 100;
    direction: rtl;
}
.gm-nav li:hover > .dropdown-menu,
.gm-nav li:hover > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.gm-nav .sub-menu a,
.gm-nav .dropdown-menu a {
    display: block;
    padding: .55rem 1.1rem;
    font-family: "Changa", sans-serif;
    font-size: .9rem;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: background .2s, color .2s, padding .2s;
    border-radius: 6px;
    margin: 2px 6px;
}
.gm-nav .sub-menu a:hover,
.gm-nav .dropdown-menu a:hover {
    background: rgba(13,179,158,.15);
    color: var(--brand-primary);
    padding-right: 1.4rem;
}

/* ── CTA Button ─────────────────────────────────────────────────── */
.gm-navbar__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: "Changa", sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0DB39E, #0a8c7c);
    border: none;
    border-radius: 50px;
    padding: .6rem 1.5rem;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, background .25s;
    box-shadow: 0 4px 18px rgba(13,179,158,.35);
}
.gm-navbar__cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #0a8c7c, #0DB39E);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,179,158,.5);
}
.gm-navbar__cta:active { transform: translateY(0); }
.gm-navbar__cta i { font-size: 1.1rem; }

/* Pulse ring */
.gm-navbar__cta-ring {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(13,179,158,.55);
    animation: gm-cta-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes gm-cta-pulse {
    0%  { box-shadow: 0 0 0 0   rgba(13,179,158,.55); }
    70% { box-shadow: 0 0 0 14px rgba(13,179,158,0);  }
    100%{ box-shadow: 0 0 0 0   rgba(13,179,158,0);  }
}

/* ── Mobile actions ─────────────────────────────────────────────── */
.gm-navbar__mobile-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}
@media (min-width: 992px) { .gm-navbar__mobile-actions { display: none; } }

.gm-navbar__mobile-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(13,179,158,.15);
    color: var(--brand-primary);
    text-decoration: none;
    transition: background .25s, transform .2s;
    font-size: .9rem;
}
.gm-navbar__mobile-phone:hover { background: var(--brand-primary); color: #fff; transform: scale(1.08); }

/* Hamburger button */
.gm-navbar__toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background .25s;
}
.gm-navbar__toggler:hover { background: rgba(255,255,255,.14); }

.gm-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 22px; height: 16px;
    gap: 5px;
}
.gm-hamburger__line {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
/* Open state: X icon */
.gm-navbar__toggler.is-open .gm-hamburger__line--top {
    transform: translateY(7px) rotate(45deg);
}
.gm-navbar__toggler.is-open .gm-hamburger__line--mid {
    opacity: 0; transform: scaleX(0);
}
.gm-navbar__toggler.is-open .gm-hamburger__line--bot {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Overlay ─────────────────────────────────────────────── */
.gm-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,15,30,.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity .35s ease;
}
.gm-mobile-overlay.is-open {
    display: block;
}
.gm-mobile-overlay.is-visible { opacity: 1; }

/* ── Mobile Menu Panel ──────────────────────────────────────────── */
.gm-mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--brand-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    direction: rtl;
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,.06);
    box-shadow: -20px 0 60px rgba(0,0,0,.55);
}
.gm-mobile-menu.is-open { transform: translateX(0); }

@media (min-width: 992px) { .gm-mobile-menu { display: none !important; } }

/* Mobile menu header */
.gm-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
}
.gm-mobile-menu__logo { width: 110px; height: auto; object-fit: contain; }
.gm-mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.gm-mobile-menu__close:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* Mobile menu nav */
.gm-mobile-menu__nav { flex: 1; padding: 1rem 0; }
.gm-mobile-menu__list {
    list-style: none;
    margin: 0; padding: 0;
}
.gm-mobile-menu__list > li > a,
.gm-mobile-menu__list > li > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.5rem;
    font-family: "Changa", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .2s, background .2s, padding .2s;
}
.gm-mobile-menu__list > li > a:hover,
.gm-mobile-menu__list > li.current-menu-item > a {
    color: var(--brand-primary);
    background: rgba(13,179,158,.07);
    padding-right: 1.9rem;
}
/* Sub-items */
.gm-mobile-menu__list .sub-menu,
.gm-mobile-menu__list .dropdown-menu {
    list-style: none;
    padding: 0; margin: 0;
    background: rgba(0,0,0,.2);
}
.gm-mobile-menu__list .sub-menu a,
.gm-mobile-menu__list .dropdown-menu a {
    display: block;
    padding: .65rem 2rem;
    font-family: "Changa", sans-serif;
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.03);
    transition: color .2s, background .2s;
}
.gm-mobile-menu__list .sub-menu a:hover,
.gm-mobile-menu__list .dropdown-menu a:hover {
    color: var(--brand-primary);
    background: rgba(13,179,158,.07);
}

/* Mobile menu footer */
.gm-mobile-menu__foot {
    padding: 1.2rem 1.4rem;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    background: rgba(255,255,255,.02);
}
.gm-mobile-menu__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1rem;
    background: #25d366;
    color: #fff;
    font-family: "Changa", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background .25s, transform .2s;
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.gm-mobile-menu__wa:hover { background: #1da851; color: #fff; transform: translateY(-1px); }
.gm-mobile-menu__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    font-family: "Changa", sans-serif;
    font-size: .95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background .25s, color .25s;
}
.gm-mobile-menu__call:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ── Body lock when menu is open ───────────────────────────────── */
body.gm-menu-open { overflow: hidden; }

/* ── Adjust page content for sticky topbar offset ──────────────── */
.gm-navbar.is-scrolled ~ * { /* no offset needed — fixed navbar */ }

/* ── Ensure topbar offset for fixed nav on non-hero pages ───────── */
body:not(.home) .gm-navbar {
    position: relative;
    background: var(--brand-dark);
}
body:not(.home) .gm-navbar.is-scrolled {
    position: fixed;
}


/* ================================================================
   SPACING BALANCE v2 — Navbar sticky + Hero pull-up trick
   All breakpoints balanced.  Overrides earlier v1 rules.
================================================================ */

/* ── CSS custom properties for nav height ─────────────────────── */
:root {
    --gm-nav-h:     70px;   /* mobile navbar height   */
    --gm-topbar-h:  38px;   /* desktop topbar height  */
}
@media (min-width: 992px) {
    :root { --gm-nav-h: 80px; }
}

/* ── Navbar: position:sticky spans the ENTIRE page ────────────── */
/*    Overrides the earlier position:absolute / position:fixed     */
.gm-navbar {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
    background: transparent;          /* transparent on home hero  */
    z-index: 9000;
    transition: background .35s ease, box-shadow .35s ease;
}
/* Glass effect when scrolled (JS adds .is-scrolled) */
.gm-navbar.is-scrolled {
    position: sticky !important;      /* keep sticky — no fixed    */
    background: rgba(15,23,42,.93) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,.38) !important;
}
/* Non-home pages: always opaque (no transparent hero behind it)  */
body:not(.home) .gm-navbar {
    background: rgba(15,23,42,.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 2px 18px rgba(0,0,0,.28) !important;
}

/* ── Navbar container height: consistent per breakpoint ───────── */
.gm-navbar__container {
    min-height: var(--gm-nav-h);
    transition: min-height .35s ease;
}
.gm-navbar.is-scrolled .gm-navbar__container {
    min-height: 60px;
}

/* ── Logo: constrained so navbar height stays predictable ──────── */
.gm-navbar__logo {
    max-height: 52px;
    width: auto;
    max-width: 140px;
}
@media (min-width: 992px) {
    .gm-navbar__logo { max-height: 58px; max-width: 150px; }
}
.gm-navbar.is-scrolled .gm-navbar__logo {
    max-height: 42px;
    max-width: 130px;
}

/* ── HOME HERO: pull up behind the transparent sticky navbar ────
   The hero section is the first element inside .container-fluid.
   Negative margin-top pulls it upward so the hero background
   visually extends behind the transparent navbar — premium feel.   */
.gm-hero {
    margin-top: calc(-1 * var(--gm-nav-h));
}

/* ── Hero inner padding: explicit, breakpoint-based ────────────── */
/*    Ensures hero CONTENT clears the navbar.                       */
/*    top = nav-height + visual breathing room                      */
.gm-hero__inner {
    padding-block: calc(var(--gm-nav-h) + 20px) 52px;    /* mobile */
}
@media (min-width: 576px) {
    .gm-hero__inner { padding-block: calc(var(--gm-nav-h) + 28px) 60px; }
}
@media (min-width: 768px) {
    .gm-hero__inner { padding-block: calc(var(--gm-nav-h) + 36px) 68px; }
}
@media (min-width: 992px) {
    /* Desktop: topbar(38px) is above the sticky nav. Hero margin-top
       is -80px, so hero top is 38px below topbar.
       Content starts at: 80px (nav) + 52px (breathing) = 132px from hero top */
    .gm-hero__inner { padding-block: 132px 88px; }
}
@media (min-width: 1200px) {
    .gm-hero__inner { padding-block: 148px 96px; }
}
@media (min-width: 1400px) {
    .gm-hero__inner { padding-block: 164px 108px; }
}

/* ── Non-home page hero (gm-pg-hero): balanced spacing ─────────── */
/*    Navbar is sticky ABOVE it — no clearance needed in the hero.  */
/*    Just visual breathing room.                                    */
.gm-pg-hero {
    padding-block: clamp(64px, 9vw, 100px) clamp(48px, 7vw, 80px);
}

/* ── Non-home page content wrapper: top breathing room ─────────── */
body:not(.home) .wrapper,
body:not(.home) #page-wrapper {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* ── Scroll-padding: anchor links clear the sticky navbar ───────── */
html {
    scroll-padding-top: calc(var(--gm-nav-h) + 16px);
}

/* ── Admin bar: offset sticky navbar below WP admin bar ─────────── */
.admin-bar .gm-navbar {
    top: 32px !important;
}
@media (max-width: 782px) {
    .admin-bar .gm-navbar { top: 46px !important; }
}


/* ================================================================
   FOOTER SPACING & POLISH v2 — balanced across all screens
   Core bug: transform:translateY(-50%) clips on mobile because
   overflow:hidden on .gm-footer cuts off anything above its top
   edge.  Fix: remove transform; use clean padding + margin only.
================================================================ */

/* 1. Footer top padding — small, clean, no offset for transform */
.gm-footer {
    padding-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    overflow: hidden !important;     /* keep for blobs */
}

/* 2. CTA card — remove the fragile translateY(-50%) approach    */
.gm-footer__cta-wrap {
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. Visual separator between CTA card and footer grid          */
.gm-footer__sep {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
    margin-block: clamp(2rem, 4vw, 3rem) 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,.12) 30%,
        rgba(13,179,158,.25) 50%,
        rgba(255,255,255,.12) 70%,
        transparent 100%
    );
}

/* 4. Footer inner — remove the now-redundant large top padding  */
.gm-footer__inner {
    padding-top: clamp(1.75rem, 3.5vw, 2.75rem) !important;
}

/* 5. Brand column: website link pill                            */
.gm-footer__site-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gmf-brand-2, #2FE6CB);
    font-family: "Changa", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    background: rgba(47,230,203,.08);
    border: 1px solid rgba(47,230,203,.22);
    border-radius: 999px;
    padding: .35rem .85rem;
    margin-top: .85rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s;
}
.gm-footer__site-link:hover {
    background: rgba(47,230,203,.16);
    color: #fff;
    border-color: rgba(47,230,203,.45);
}
.gm-footer__site-link svg { flex-shrink: 0; fill: currentColor; }

/* 6. Responsive: tablet (576–991px) — brand spans full width   */
@media (min-width: 576px) and (max-width: 991.98px) {
    .gm-footer__grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .gm-footer__col--brand {
        grid-column: 1 / -1;
    }
    .gm-footer__about {
        max-width: 60ch;
    }
}

/* 7. Mobile (< 576px) — CTA card stack + larger tap targets    */
@media (max-width: 575.98px) {
    .gm-footer__cta {
        flex-direction: column;
        align-items: stretch;
    }
    .gm-footer__cta-actions {
        display: flex;
        flex-direction: column;
        gap: .6rem;
        width: 100%;
    }
    .gm-footer__btn {
        justify-content: center;
        padding: .9rem 1rem;
        font-size: 1rem;
    }
    .gm-footer__links a {
        padding: .55rem 0;
        font-size: 1rem;
    }
    .gm-footer__contacts li > a,
    .gm-footer__contacts li > div,
    .gm-footer__contacts li {
        gap: .55rem;
    }
    .gm-footer__contact-value {
        font-size: .9rem;
    }
}

/* 8. Large screens (≥1200px) — more breathing room in grid     */
@media (min-width: 1200px) {
    .gm-footer__grid {
        gap: 3.5rem !important;
    }
}

/* 9. Scroll-padding compensation for anchor links               */
html {
    scroll-padding-top: calc(var(--gm-nav-h, 70px) + 16px);
}

/* 10. Body bottom clearance before footer (inner pages)         */
body:not(.home) .wrapper,
body:not(.home) #page-wrapper {
    padding-bottom: clamp(4rem, 8vw, 6rem) !important;
}

