        :root{
            --ftr-navy:#0c4a6e;
            --ftr-navy-deep:#062a42;
            --ftr-navy-dark:#041e30;
            --ftr-amber:#f59e0b;
            --ftr-amber-hover:#d97706;
            --ftr-white:#ffffff;
            --ftr-light:#cbd5e1;
            --ftr-muted:rgba(203,213,225,.78);
            --ftr-muted2:rgba(203,213,225,.58);
            --ftr-border:rgba(255,255,255,.12);
            --ftr-radius:8px;
            --ftr-transition:.25s ease;
        }

        .ftr-footer{
            background: var(--ftr-navy);
            color: var(--ftr-white);
            font-family: inherit;
        }

        /* ── CTA Band ── */
        .ftr-cta{
            background: linear-gradient(135deg, var(--ftr-navy-deep) 0%, var(--ftr-navy) 50%, var(--ftr-navy-deep) 100%);
            padding: 40px 0;
            border-bottom: 1px solid var(--ftr-border);
            position: relative;
            overflow: hidden;
        }
        .ftr-cta::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 50%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(245,158,11,.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .ftr-cta-inner{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .ftr-cta-title{
            margin: 0;
            font-weight: 800;
            font-size: clamp(18px, 2vw, 26px);
            line-height: 1.3;
            color: var(--ftr-white);
        }
        .ftr-cta-sub{
            margin: 6px 0 0;
            color: var(--ftr-light);
            font-weight: 500;
            font-size: .95rem;
        }
        .ftr-cta-actions{
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .ftr-btn{
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .7rem 1.4rem;
            border-radius: var(--ftr-radius);
            font-weight: 700;
            font-size: .9rem;
            text-decoration: none !important;
            transition: all var(--ftr-transition);
            white-space: nowrap;
            cursor: pointer;
        }
        .ftr-btn-amber{
            background: var(--ftr-amber);
            color: var(--ftr-navy-deep);
            border: 2px solid var(--ftr-amber);
        }
        .ftr-btn-amber:hover{
            background: var(--ftr-amber-hover);
            border-color: var(--ftr-amber-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245,158,11,.35);
            color: var(--ftr-navy-deep);
        }
        .ftr-btn-outline{
            background: transparent;
            color: var(--ftr-white);
            border: 2px solid rgba(255,255,255,.3);
        }
        .ftr-btn-outline:hover{
            border-color: var(--ftr-amber);
            color: var(--ftr-amber);
            transform: translateY(-2px);
        }

        /* ── Footer Body ── */
        .ftr-body{
            padding: 56px 0 40px;
            background: var(--ftr-navy);
        }

        .ftr-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
        }
        @media (min-width: 768px){
            .ftr-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (min-width: 992px){
            .ftr-grid{ grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 28px; }
        }

        .ftr-col-heading{
            margin: 0 0 18px;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: .01em;
            color: var(--ftr-white);
            display: flex;
            align-items: center;
            gap: .5rem;
            position: relative;
            padding-bottom: 12px;
        }
        .ftr-col-heading::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            background: var(--ftr-amber);
            border-radius: 2px;
        }
        [dir="rtl"] .ftr-col-heading::after{
            left: auto;
            right: 0;
        }
        .ftr-col-heading i{
            color: var(--ftr-amber);
            font-size: 1rem;
        }

        /* About column */
        .ftr-about-text{
            color: var(--ftr-light);
            line-height: 1.8;
            text-align: justify;
            text-justify: inter-word;
            margin: 0 0 20px;
            font-size: .92rem;
        }

        /* Social icons */
        .ftr-social{
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .ftr-social a{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: transparent;
            border: 2px solid var(--ftr-amber);
            color: var(--ftr-white);
            text-decoration: none !important;
            font-size: .9rem;
            transition: all var(--ftr-transition);
        }
        .ftr-social a:hover{
            background: var(--ftr-amber);
            color: var(--ftr-navy-deep);
            transform: translateY(-3px);
            box-shadow: 0 4px 14px rgba(245,158,11,.35);
        }

        /* Links list */
        .ftr-links{
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ftr-links a{
            color: var(--ftr-light);
            text-decoration: none !important;
            font-weight: 500;
            font-size: .92rem;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: color var(--ftr-transition);
            position: relative;
        }
        .ftr-links a::after{
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--ftr-amber);
            transition: width var(--ftr-transition);
        }
        [dir="rtl"] .ftr-links a::after{
            left: auto;
            right: 0;
        }
        .ftr-links a:hover{
            color: var(--ftr-white);
        }
        .ftr-links a:hover::after{
            width: 100%;
        }
        .ftr-links i{
            color: var(--ftr-amber);
            font-size: .75rem;
            flex-shrink: 0;
        }

        /* Contact list */
        .ftr-contact{
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .ftr-contact li{
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: var(--ftr-light);
            font-size: .92rem;
            line-height: 1.7;
        }
        .ftr-contact-icon{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(245,158,11,.12);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .ftr-contact-icon i{
            color: var(--ftr-amber);
            font-size: .85rem;
        }
        .ftr-contact a{
            color: var(--ftr-white);
            font-weight: 600;
            text-decoration: none !important;
            transition: color var(--ftr-transition);
        }
        .ftr-contact a:hover{
            color: var(--ftr-amber);
        }
        .ftr-contact .ftr-muted{
            color: var(--ftr-muted2);
            font-size: .85rem;
        }

        /* Email anti-scrape: keep visible as [at] but clickable via JS */
        .ftr-email{ unicode-bidi: plaintext; }

        /* ── Bottom Bar ── */
        .ftr-bottom{
            border-top: 1px solid var(--ftr-border);
            background: var(--ftr-navy-dark);
            padding: 18px 0;
        }
        .ftr-bottom-inner{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .ftr-logo img{
            height: 34px;
            width: auto;
            opacity: .85;
            transition: opacity var(--ftr-transition);
        }
        .ftr-logo:hover img{
            opacity: 1;
        }
        .ftr-copy{
            color: var(--ftr-muted);
            font-size: .85rem;
            font-weight: 500;
        }

        /* ── Back to Top ── */
        .ftr-back-top{
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--ftr-amber);
            color: var(--ftr-navy-deep);
            display: grid;
            place-items: center;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 16px rgba(245,158,11,.4);
            transition: all var(--ftr-transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            text-decoration: none !important;
        }
        .ftr-back-top.ftr-visible{
            opacity: 1;
            visibility: visible;
        }
        .ftr-back-top:hover{
            background: var(--ftr-amber-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 24px rgba(245,158,11,.5);
            color: var(--ftr-navy-deep);
        }
        [dir="rtl"] .ftr-back-top{
            right: auto;
            left: 28px;
        }

        /* ── RTL tweaks ── */
        [dir="rtl"] .ftr-cta-inner{ flex-direction: row-reverse; }
        [dir="rtl"] .ftr-bottom-inner{ flex-direction: row-reverse; }
        [dir="rtl"] .ftr-col-heading{ flex-direction: row-reverse; }
        [dir="rtl"] .ftr-contact li{ flex-direction: row-reverse; text-align: right; }
        [dir="rtl"] .ftr-about-text{ text-align: justify; }
        [dir="rtl"] .ftr-links a:hover{ transform: translateX(-2px); }
