/*
Theme Name: Grosvenor Facility Management
Theme URI: https://grosvenoregypt.com
Author: Grosvenor FM
Description: Exact replica of grosvenoregypt.com - fully customizable via WordPress Customizer
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: grosvenor-fm
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --color-primary: #CC0000;
    --color-primary-alt: #FF2123;
    --color-dark: #202020;
    --color-dark2: #1a1a1a;
    --color-white: #ffffff;
    --color-light: #f5f5f5;
    --color-text: #444444;
    --color-text-light: #7a7a7a;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-script: 'Pacifico', cursive;
    --transition: all 0.3s ease;
    --shadow: 0 6px 60px rgba(140,146,178,0.16);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: #181b31; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* =============================================
   SIDE NAV (dark left bar)
   ============================================= */
#gfm-side-nav {
    position: fixed;
    left: 0; top: 0;
    width: 160px;
    height: 100vh;
    background: var(--color-dark2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 10px;
    transition: var(--transition);
}
#gfm-side-nav .side-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
#gfm-side-nav .side-logo img {
    width: 80px;
    height: auto;
}
#gfm-side-nav .side-logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    line-height: 1.3;
}
#gfm-side-nav .side-logo-sub {
    display: block;
    color: var(--color-primary);
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid #444;
    padding-top: 5px;
    margin-top: 3px;
    width: 100%;
    text-align: center;
}

/* Scroll indicator */
#gfm-side-nav .scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
#gfm-side-nav .scroll-indicator span {
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
#gfm-side-nav .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
#gfm-side-nav .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* MENU button (right side) */
#gfm-menu-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px 16px;
}
#gfm-menu-btn .bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#gfm-menu-btn .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    transition: var(--transition);
}
#gfm-menu-btn .menu-txt {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* DRAWER */
#gfm-drawer {
    position: fixed;
    top: 0; right: -400px;
    width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
#gfm-drawer.open { right: 0; }
#gfm-drawer .drawer-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
}
#gfm-drawer nav ul { text-align: center; }
#gfm-drawer nav ul li { margin-bottom: 10px; }
#gfm-drawer nav ul li a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    display: block;
    padding: 6px 0;
    transition: var(--transition);
    line-height: 1.6;
}
#gfm-drawer nav ul li a:hover { color: rgba(0,0,0,0.6); }
#gfm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}
#gfm-overlay.show { display: block; }

/* =============================================
   MAIN WRAPPER
   ============================================= */
#gfm-main {
    margin-left: 160px;
}

/* =============================================
   HERO SLIDER (video-based)
   ============================================= */
#gfm-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a1628;
}

.gfm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.gfm-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Video bg */
.gfm-slide-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gfm-slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Fallback image bg */
.gfm-slide-imgbg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.gfm-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 51%, #000 100%);
    opacity: 0.5;
}

/* Slide content */
.gfm-slide-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 560px;
    color: #fff;
}
.gfm-slide-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}
.gfm-slide-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem,5vw,4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 8px;
}
.gfm-slide-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1rem,2.2vw,1.5rem);
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    line-height: 1.3;
}
.gfm-slide-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 460px;
}
.gfm-slide-tagline {
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-family: var(--font-script);
    font-size: clamp(1.4rem,2.5vw,2rem);
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Slider dots */
.gfm-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 3;
}
.gfm-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.55);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.gfm-dot.active { background: var(--color-primary); border-color: var(--color-primary); }

/* Slider arrows */
.gfm-slider-arrows {
    position: absolute;
    bottom: 20px;
    right: 5%;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.gfm-arrow {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.gfm-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); }

/* =============================================
   RED SIDEBAR LABEL
   ============================================= */
.gfm-section-wrap {
    position: relative;
    display: flex;
}
.gfm-red-sidebar {
    width: 160px;
    flex-shrink: 0;
    background: var(--color-primary-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
}
.gfm-red-sidebar span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
.gfm-section-content { flex: 1; min-width: 0; }

/* =============================================
   ABOUT SECTION
   ============================================= */
#gfm-about {
    padding: 70px 60px 40px;
    background: #fff;
}
.gfm-about-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 14px;
}
.gfm-about-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 20px;
}
.gfm-about-text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 760px;
}

/* Stats grid */
.gfm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 30px;
}
.gfm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.gfm-stat-shield {
    position: relative;
    width: 100px;
    height: 112px;
}
.gfm-stat-shield svg.shield-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.gfm-stat-shield .lottie-wrap {
    position: absolute;
    inset: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfm-stat-shield .lottie-wrap img,
.gfm-stat-shield .lottie-wrap svg {
    width: 55px;
    height: 55px;
}
.gfm-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-alt);
    line-height: 1;
}
.gfm-stat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#gfm-services-wrap {
    background: #fff;
}
.gfm-services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gfm-svc-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    cursor: pointer;
}
.gfm-svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.55);
}
.gfm-svc-card:hover .gfm-svc-bg {
    transform: scale(1.06);
    filter: brightness(0.4);
}
.gfm-svc-card:nth-child(3) .gfm-svc-bg {
    background-color: #0b4fa0;
    filter: brightness(0.7) saturate(1.2);
}
.gfm-svc-inner {
    position: absolute;
    inset: 0;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(240,240,240,0) 0%, #000 100%);
}
.gfm-svc-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gfm-svc-brand svg { width: 22px; height: 22px; flex-shrink: 0; }
.gfm-svc-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}
.gfm-svc-link {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1.5px solid var(--color-primary);
    padding-bottom: 2px;
    transition: var(--transition);
}
.gfm-svc-link:hover { color: #fff; border-color: #fff; }

/* =============================================
   EMPOWERING / VALUES SECTION
   ============================================= */
#gfm-empowering {
    background: #fff;
}
#gfm-empowering .gfm-emp-content {
    padding: 60px 60px 50px;
}
.gfm-emp-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 6px;
}
.gfm-emp-tagline {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Value cards (2 rows of 3) */
.gfm-values-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}
.gfm-value-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.gfm-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 50px rgba(140,146,178,0.28);
}
.gfm-value-icon-wrap {
    min-height: 175px;
    background-size: cover;
    background-position: center;
    border-radius: 11px 11px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}
.gfm-value-icon-wrap svg,
.gfm-value-icon-wrap img {
    width: 80px;
    height: 80px;
}
.gfm-value-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 14px;
    color: #181b31;
}

/* =============================================
   CSR SECTION
   ============================================= */
#gfm-csr {
    padding: 50px 60px 60px;
    background: #fff;
}
.gfm-csr-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 30px;
}
.gfm-csr-shield { position: relative; }
.gfm-csr-shield .shield-img {
    width: 100%;
    max-width: 240px;
}
.gfm-csr-shield .csr-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}
.gfm-csr-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.gfm-csr-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 20px;
}
.gfm-csr-text p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 14px;
}

/* =============================================
   CLIENTS SECTION
   ============================================= */
#gfm-clients-section {
    background: linear-gradient(135deg, #6b0000 0%, #cc0000 45%, #8b0000 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
#gfm-clients-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.gfm-clients-inner { padding: 0 40px; }
.gfm-clients-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 14px;
}
.gfm-clients-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 26px;
}
.gfm-clients-since {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.55);
}
/* Marquee carousel */
.gfm-carousel-track-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
.gfm-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 25s linear infinite;
}
.gfm-carousel-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gfm-client-logo {
    width: 160px;
    height: 80px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    flex-shrink: 0;
    overflow: hidden;
    transition: var(--transition);
}
.gfm-client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.gfm-client-logo img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    display: block;
}

/* =============================================
   CONTACT CTA BAR
   ============================================= */
#gfm-contact-cta {
    padding: 50px 0;
    background: #fff;
}
.gfm-cta-grid {
    display: grid;
    grid-template-columns: auto 1px auto 1px auto;
    gap: 0 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.gfm-cta-divider {
    width: 1px;
    height: 60px;
    background: #ddd;
}
.gfm-cta-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.gfm-cta-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #181b31;
    text-transform: uppercase;
    letter-spacing: -0.36px;
}
.gfm-cta-item p {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}
.gfm-cta-item a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #181b31;
}
.gfm-cta-item a:hover { color: var(--color-primary); }

/* =============================================
   FOOTER
   ============================================= */
#gfm-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.48);
}
.gfm-footer-top {
    padding: 90px 20px 15px;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.gfm-footer-logo img { width: 40%; margin-bottom: 24px; }
.gfm-footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.gfm-footer-socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: var(--transition);
}
.gfm-footer-socials a:hover { background: #a00; transform: translateY(-2px); }
.gfm-footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2em;
    display: block;
}
.gfm-footer-col ul li { margin-bottom: 11px; }
.gfm-footer-col ul li a {
    color: rgba(255,255,255,0.48);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: var(--transition);
}
.gfm-footer-col ul li a:hover { color: #fff; }
.gfm-footer-contact-item { margin-bottom: 14px; }
.gfm-footer-contact-item p,
.gfm-footer-contact-item a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.5;
    display: block;
}
.gfm-footer-contact-item .big-phone {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}
.gfm-footer-contact-item .small-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.48);
    margin-bottom: 2px;
}
.gfm-footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 0 20px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.gfm-footer-bottom {
    background: var(--color-dark);
    padding: 0 20px 30px;
    text-align: center;
}
.gfm-footer-bottom p {
    font-size: 0.875rem;
    line-height: 1.785;
    color: rgba(255,255,255,0.48);
    margin: 0;
    padding: 10px 0;
}
.gfm-footer-bottom a { color: rgba(255,255,255,0.48); }
.gfm-footer-bottom a:hover { color: #fff; }

/* =============================================
   MOBILE MENU toggle (top bar on mobile)
   ============================================= */
#gfm-mobile-bar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
#gfm-mobile-bar .mobile-logo img { width: 50px; }
#gfm-mobile-bar .mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
#gfm-mobile-bar .mobile-toggle .bar {
    width: 24px; height: 2px;
    background: #fff;
    display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    #gfm-side-nav { display: none; }
    #gfm-main { margin-left: 0; }
    #gfm-mobile-bar { display: flex; }
    body { padding-top: 60px; }
    .gfm-stats { grid-template-columns: repeat(2,1fr); }
    .gfm-services-strip { grid-template-columns: repeat(2,1fr); }
    .gfm-values-row { flex-wrap: wrap; gap: 30px; }
    .gfm-value-card { flex: 0 0 calc(33.333% - 20px); }
    .gfm-csr-grid { grid-template-columns: 1fr; }
    .gfm-footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    #gfm-about,
    #gfm-empowering .gfm-emp-content,
    #gfm-csr { padding-left: 30px; padding-right: 30px; }
    .gfm-clients-inner { padding: 0 20px; }
    .gfm-section-wrap { flex-direction: column; }
    .gfm-red-sidebar { width: 100%; height: 50px; min-height: 0; }
    .gfm-red-sidebar span { writing-mode: horizontal-tb; transform: none; }
    #gfm-menu-btn { display: none; }
}
@media (max-width: 767px) {
    .gfm-services-strip { grid-template-columns: 1fr; }
    .gfm-value-card { flex: 0 0 calc(50% - 15px); }
    .gfm-cta-grid { grid-template-columns: 1fr; gap: 20px; }
    .gfm-cta-divider { display: none; }
    .gfm-footer-top { grid-template-columns: 1fr; }
    .gfm-slide-content { left: 5%; max-width: 90%; }
    .gfm-clients-since { display: none; }
}
