/* ============================================
   QUICK STEP — PREMIUM UPGRADE 2026
   Ultra-modern design enhancements
   ============================================ */

/* ============================================
   HERO SECTION — KINETIC ENHANCEMENTS
   ============================================ */

/* Subtle grid mesh on hero */
.agency-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, black 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.agency-hero-grid {
    position: relative;
    z-index: 1;
}

/* Fix: parent line-height 0.95 clips Arabic descenders */
.agency-title {
    line-height: normal !important;
    overflow: visible !important;
}

/* Animated shimmer gradient on the Arabic title */
.agency-title-ar {
    line-height: 1.15;
    padding-bottom: 0.12em;
    display: block;
    background: linear-gradient(
        110deg,
        #FFFFFF 0%,
        #FFFFFF 30%,
        #FF9779 50%,
        #FFB59E 60%,
        #FFFFFF 80%,
        #FFFFFF 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 5s linear infinite;
}

@keyframes titleShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 250% center; }
}

/* English title subtle glow on hover */
.agency-title-en {
    transition: opacity 0.3s ease;
}

.agency-title-en:hover {
    opacity: 0.85;
}

/* Better badge */
.agency-badge {
    animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

/* Hero image tilt + glow */
.agency-visual-wrapper {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s ease;
}

.agency-visual-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 151, 121, 0.4) 0%, rgba(20, 184, 166, 0.2) 100%);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.agency-visual-wrapper:hover::after {
    opacity: 1;
}

/* CTA button arrow fix for RTL */
.agency-btn-primary:hover svg {
    transform: translateX(4px);
}

/* ============================================
   SCROLL REVEAL SYSTEM
   ============================================ */
.qs-reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.qs-reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.qs-reveal-scale {
    opacity: 0;
    transform: scale(0.9) translateY(24px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stagger delays */
.qs-d1  { transition-delay: 0.08s; }
.qs-d2  { transition-delay: 0.16s; }
.qs-d3  { transition-delay: 0.24s; }
.qs-d4  { transition-delay: 0.32s; }
.qs-d5  { transition-delay: 0.40s; }
.qs-d6  { transition-delay: 0.48s; }

/* ============================================
   VALUE PILLARS SECTION
   ============================================ */
.pillars-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 24px;
}

.pillars-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

/* Pillar Card */
.pillar-card {
    position: relative;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s var(--ease-spring),
                background 0.4s var(--ease-out-expo),
                border-color 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}

/* Top accent line */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pillar-accent, var(--gradient-brand));
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Subtle orb */
.pillar-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--pillar-color, var(--accent-primary));
    top: -80px;
    right: -60px;
    filter: blur(100px);
    opacity: 0.12;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: rgba(52, 52, 52, 0.55);
    border-color: var(--border-default);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(255, 151, 121, 0.06);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover::after {
    opacity: 0.22;
}

/* Pillar number */
.pillar-number {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
    transition: -webkit-text-stroke-color 0.4s ease;
    user-select: none;
}

.pillar-card:hover .pillar-number {
    -webkit-text-stroke-color: rgba(255, 151, 121, 0.3);
}

/* Pillar icon */
.pillar-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--pillar-accent, var(--gradient-brand));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.4s var(--ease-spring);
}

.pillar-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(16px);
    opacity: 0.5;
    z-index: -1;
}

.pillar-card:hover .pillar-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.pillar-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

/* Pillar text */
.pillar-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pillar-color, var(--accent-primary));
    margin-bottom: 12px;
    padding: 5px 12px;
    background: rgba(255, 151, 121, 0.08);
    border: 1px solid rgba(255, 151, 121, 0.15);
    border-radius: var(--radius-full);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Pillar CTA arrow */
.pillar-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dimmed);
    transition: color 0.3s ease, gap 0.3s ease;
}

.pillar-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-arrow {
    color: var(--pillar-color, var(--accent-primary));
    gap: 12px;
}

.pillar-card:hover .pillar-arrow svg {
    transform: translateX(-4px);
}

/* Color accents per pillar */
.pillar-card.pillar-coral {
    --pillar-color: var(--accent-primary);
    --pillar-accent: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
}

.pillar-card.pillar-teal {
    --pillar-color: var(--accent-secondary);
    --pillar-accent: linear-gradient(90deg, var(--accent-secondary), var(--accent-secondary-light));
}

.pillar-card.pillar-teal .pillar-tag {
    color: var(--accent-secondary);
    background: rgba(20, 184, 166, 0.08);
    border-color: rgba(20, 184, 166, 0.15);
}

.pillar-card.pillar-white {
    --pillar-color: #A0A0A0;
    --pillar-accent: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.pillar-card.pillar-white .pillar-tag {
    color: #A0A0A0;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pillar-card.pillar-white .pillar-icon-wrap {
    background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
}

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pillar-card {
        padding: 36px 28px;
    }

    .pillar-number {
        font-size: 3.5rem;
    }
}

/* ============================================
   SECTION SEPARATOR — Glow Lines
   ============================================ */
.section-glow-sep {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    pointer-events: none;
}

.section-glow-sep-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 151, 121, 0.25), rgba(20, 184, 166, 0.15), transparent);
    position: relative;
}

.section-glow-sep-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    filter: blur(1px);
}

/* ============================================
   AURORA CTA — Enhanced Background
   ============================================ */
.cta-section-glass {
    position: relative;
    overflow: hidden;
}

/* Primary aurora blob */
.cta-section-glass::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 151, 121, 0.18) 0%, rgba(20, 184, 166, 0.08) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
    animation: cta-aurora 9s ease-in-out infinite;
    z-index: 0;
}

/* Secondary aurora blob */
.cta-section-glass::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.14) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    filter: blur(100px);
    pointer-events: none;
    animation: cta-aurora 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes cta-aurora {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    33%       { transform: translate(-50%, -50%) scale(1.15) rotate(5deg); }
    66%       { transform: translate(-50%, -50%) scale(0.95) rotate(-5deg); }
}

.cta-card-glass {
    position: relative;
    z-index: 1;
}

/* Enhance CTA card border */
.cta-card-glass {
    border-color: rgba(255, 255, 255, 0.07) !important;
    background: rgba(30, 30, 30, 0.5) !important;
}

.cta-card-glass::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 151, 121, 0.2) 0%,
        transparent 40%,
        transparent 60%,
        rgba(20, 184, 166, 0.15) 100%
    );
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   FAB — Enhanced
   ============================================ */
.fab {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 500;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-brand) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 151, 121, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s var(--ease-spring),
                box-shadow 0.35s var(--ease-out-expo);
    animation: fabFloat 4s ease-in-out infinite;
}

.fab-button:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 151, 121, 0.5),
                0 4px 16px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.fab-button svg {
    width: 22px;
    height: 22px;
    fill: white;
}

@keyframes fabFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

/* ============================================
   STATS SECTION — Enhanced Numbers
   ============================================ */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
}

/* ============================================
   BENTO CARDS — Premium Hover Upgrade
   ============================================ */

/* Holographic shimmer on hover */
.bento-card[data-accent]:hover {
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px var(--card-accent, rgba(255,151,121,0.3)),
        0 0 40px rgba(var(--card-glow, 255, 151, 121), 0.15);
}

/* Company number badge highlight */
.bento-card:hover .company-number {
    letter-spacing: 0.06em;
}

/* ============================================
   PREMIUM FOOTER — Full Redesign
   ============================================ */
.footer-premium {
    position: relative;
    z-index: 1;
    padding: 88px 24px 48px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-premium-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-premium-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 72px;
}

/* Brand column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-brand-col .footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.footer-brand-col .footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 220px;
    margin-bottom: 28px;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease,
                transform 0.3s var(--ease-spring),
                box-shadow 0.3s ease;
}

.footer-social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 151, 121, 0.35);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Footer columns */
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dimmed);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
    display: block;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-col-links li a:hover {
    color: var(--text-primary);
    transform: translateX(-4px);
}

/* Contact info items */
.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dimmed);
}

.footer-contact-value {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

a.footer-contact-value:hover {
    color: var(--accent-primary);
}

/* Footer Bottom Bar */
.footer-premium-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dimmed);
}

.footer-copy span {
    color: var(--accent-primary);
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dimmed);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* Footer ambient glow */
.footer-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 151, 121, 0.06) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

/* Fix nav logo height - too large */
.floating-nav .logo-img {
    height: 44px;
}

/* Footer logo - prevent stretch */
.footer-brand-col .footer-logo {
    height: auto !important;
    max-height: 38px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

/* Footer responsive */
@media (max-width: 1200px) {
    .footer-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 64px 16px 40px;
    }

    .footer-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .footer-premium-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ============================================
   ABOUT SECTION — Enhanced
   ============================================ */
.about-content-glass h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* Large decorative quote mark */
.about-section-glass {
    position: relative;
    overflow: hidden;
}

.about-section-glass::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 20rem;
    line-height: 1;
    color: var(--accent-primary);
    opacity: 0.03;
    font-weight: 900;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   TIMELINE SECTION — Enhanced Connectors
   ============================================ */
.timeline-item-glass {
    position: relative;
}

.timeline-item-glass::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--border-default), transparent);
}

.timeline-item-glass:last-child::before {
    display: none;
}

/* ============================================
   FLOATING NAV — Enhanced Scroll State
   ============================================ */
.floating-nav.scrolled {
    background: rgba(10, 10, 10, 0.92) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Scroll progress bar */
.qs-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.qs-scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: progressShimmer 3s linear infinite;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 151, 121, 0.6);
}

@keyframes progressShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ============================================
   CLIENTS SECTION — Enhanced Logos
   ============================================ */
.clients-section {
    position: relative;
}

/* Reduce excessive height on logos */
.client-logo {
    height: 90px;
    max-width: 200px;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: opacity;
}

.client-logo:hover {
    opacity: 0.9;
    transform: scale(1.06);
}

/* ============================================
   SHOWCASE SECTION — Better Glow
   ============================================ */
.showcase-section::before {
    opacity: 1;
}

.showcase-card {
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

/* ============================================
   LOGO DIVIDER — Pulsing Logo
   ============================================ */
.logo-divider-img {
    animation: logoBreath 4s ease-in-out infinite;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

@keyframes logoBreath {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   MOBILE — General Improvements
   ============================================ */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .about-section-glass::before {
        display: none;
    }

    .timeline-item-glass::before {
        display: none;
    }

    .fab {
        bottom: 24px;
        left: 24px;
    }

    .fab-button {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .agency-title-ar,
    .agency-badge,
    .qs-scroll-progress-bar,
    .fab-button,
    .logo-divider-img {
        animation: none !important;
    }

    .qs-reveal,
    .qs-reveal-left,
    .qs-reveal-scale {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
