 /* ---------- RESET & ROOT VARIABLES (original + premium touches) ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #083d5d;
            --primary-dark: #062a41;
            --secondary: #4da8da;
            --accent: #ff6b35;
            --light: #f2f7fc;
            --dark: #333;
            --gray: #555;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* base body styles */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f2f2f2;
            color: #333;
            line-height: 1.6;
            padding-top: 130px;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
        }

        /* ============================================ */
        /* FOOTER - RESPONSIVE - COMPACT VERSION        */
        /* ALL CLASS NAMES ARE RENAMED TO "BRARA BARA"  */
        /* CSS PROPERTIES REMAIN 100% IDENTICAL         */
        /* ============================================ */
        footer {
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 20px 0 0;
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 0;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
        }

        /* main footer container - full width no gaps (RENAMED) */
        footer .sara-brara-mega-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ===== FOOTER GRID - RESPONSIVE (RENAMED: bara-brara-grid) ===== */
        .bara-brara-grid {
            display: grid;
            gap: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 10px;
        }

        /* Desktop default: 4 columns */
        .bara-brara-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Tablet (768px - 1024px): 2 columns */
        @media (max-width: 1024px) {
            .bara-brara-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px 30px;
            }
        }

        /* Mobile (≤768px): 2 columns */
        @media (max-width: 768px) {
            .bara-brara-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px 20px;
                text-align: left;
            }
        }

        /* Small mobile (≤550px) */
        @media (max-width: 550px) {
            .bara-brara-grid {
                gap: 15px 15px;
            }
        }

        /* Very small (≤400px) */
        @media (max-width: 400px) {
            .bara-brara-grid {
                gap: 12px 10px;
            }
        }

        /* ===== FOOTER COLUMN STYLES (RENAMED) ===== */
        .brara-logo-zone {
            display: flex;
            flex-direction: column;
        }

        .brara-logo-zone img {
            max-width: 95px;
            height: auto;
            margin-bottom: 8px;
            background: #fff;
            padding: 4px;
            border-radius: 50%;
        }

        .brara-logo-zone p {
            margin-bottom: 5px;
            color: var(--light-gray);
            font-size: 0.75rem;
            line-height: 1.4;
        }

        .sara-contact-details {
            margin-top: 3px;
        }

        .sara-contact-details p {
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            flex-wrap: wrap;
        }

        .sara-contact-details i {
            color: var(--secondary);
            width: 14px;
            font-size: 0.75rem;
        }

        .sara-contact-details a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .sara-contact-details a:hover {
            color: var(--accent);
        }

        /* headings with underline (RENAMED) */
        .bara-links-panel h3,
        .brara-social-zone h3 {
            font-size: 0.9rem;
            margin-bottom: 8px;
            position: relative;
            padding-bottom: 5px;
            font-weight: 600;
        }

        .bara-links-panel h3:after,
        .brara-social-zone h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        /* mobile headings */
        @media (max-width: 768px) {
            .bara-links-panel h3,
            .brara-social-zone h3 {
                text-align: left;
                font-size: 0.85rem;
                margin-bottom: 6px;
            }

            .bara-links-panel h3:after,
            .brara-social-zone h3:after {
                left: 0;
                transform: none;
            }
        }

        /* lists (RENAMED) */
        .bara-links-panel ul {
            list-style: none;
        }

        .bara-links-panel li {
            margin-bottom: 4px;
            transition: transform 0.3s;
        }

        .bara-links-panel li:hover {
            transform: translateX(5px);
        }

        .bara-links-panel a {
            color: var(--light-gray);
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            text-decoration: none;
        }

        .bara-links-panel a:hover {
            color: var(--white);
        }

        .bara-links-panel a i {
            color: var(--secondary);
            font-size: 0.65rem;
        }

        /* social section (RENAMED) */
        .brara-social-zone ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
        }

        .brara-social-zone a {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--light-gray);
            transition: all 0.3s;
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            font-size: 0.7rem;
            text-decoration: none;
        }

        .brara-social-zone a:hover {
            color: var(--white);
            background: rgba(77, 168, 218, 0.3);
            transform: translateY(-2px);
        }

        .brara-social-zone i {
            font-size: 0.7rem;
        }

        /* footer bottom section (RENAMED) */
        .sara-bottom-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 0;
            text-align: center;
            color: var(--light-gray);
            font-size: 0.7rem;
            position: relative;
            z-index: 1;
        }

        .brara-bottom-links {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 5px;
            flex-wrap: wrap;
        }

        .brara-bottom-links a {
            color: var(--light-gray);
            transition: color 0.3s;
            position: relative;
            font-size: 0.7rem;
            text-decoration: none;
        }

        .brara-bottom-links a:not(:last-child)::after {
            content: '|';
            position: absolute;
            right: -8px;
            color: var(--secondary);
        }

        .brara-bottom-links a:hover {
            color: var(--white);
        }

        /* back to top button (RENAMED) */
        .bara-up-button {
            position: fixed;
            right: 20px;
            bottom: 30px;
            background: var(--accent);
            color: var(--white);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            text-decoration: none;
            z-index: 99;
        }

        .bara-up-button:hover {
            background: #e55a2b;
            transform: translateY(-3px);
        }

        /* ===== EXTRA: container adjustments with new class ===== */
        footer .sara-brara-mega-container {
            width: 100%;
            max-width: 100%;
            padding-left: 30px;
            padding-right: 30px;
        }

        @media (max-width: 768px) {
            footer .sara-brara-mega-container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 550px) {
            footer .sara-brara-mega-container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* ===== ENSURE NO GREY GAPS ON MOBILE ===== */
        body {
            background-color: #ffffff;
        }

        /* ===== SOCIAL ICONS ROW ALIGNMENT ON MOBILE ===== */
        @media (max-width: 550px) {
            .brara-social-zone ul {
                justify-content: flex-start;
            }
        }