    /* =====================================================
       GLOBAL RESET & TYPOGRAPHY
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    :root {
        --orange: #0891df;
        --orange-dark: #0672b0;
        --dark:   #0d0d0d;
        --dark2:  #161616;
        --dark3:  #1e1e1e;
        --white:  #ffffff;
        --gray:   #888888;
        --light:  #f5f5f5;
        --font:   'Barlow', sans-serif;
        --font-c: 'Barlow Condensed', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
        font-family: var(--font);
        font-size: 15px;
        color: #333;
        background: #fff;
        margin: 0;
        padding-top: 72px; /* offset for fixed navbar */
        overflow-x: hidden;
    }
    a { text-decoration: none !important; transition: color .25s; }
    img { max-width: 100%; }

    /* =====================================================
       TOP INFO BAR
    ===================================================== */
    .site-topbar {
        background: var(--dark);
        padding: 8px 0;
        font-size: 13px;
    }
    .site-topbar a, .site-topbar span {
        color: #aaa;
        margin-right: 22px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .site-topbar a:hover { color: var(--orange); }
    .site-topbar .social-icons a {
        color: #aaa;
        font-size: 14px;
        margin-right: 12px;
        margin-left: 0;
    }
    .site-topbar .social-icons a:hover { color: var(--orange); }

    /* =====================================================
       MAIN NAVBAR
    ===================================================== */
    .site-navbar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1050;
        background: rgba(13,13,13,0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transition: background .3s, box-shadow .3s;
        height: 72px;
    }
    .site-navbar.scrolled {
        background: rgba(13,13,13,0.99);
        box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .site-navbar .navbar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0;
    }
    .site-navbar .navbar-brand img {
        height: 44px;
        width: auto;
        object-fit: contain;
        filter: brightness(1.1);
    }
    .site-navbar .brand-text {
        font-family: var(--font-c);
        font-weight: 900;
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
        line-height: 1.1;
    }
    .site-navbar .brand-text span { color: var(--orange); display: block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
    .site-navbar .navbar-nav .nav-item .nav-link {
        color: #ccc !important;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 6px 16px !important;
        position: relative;
        transition: color .25s;
    }
    .site-navbar .navbar-nav .nav-item .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px; left: 16px; right: 16px;
        height: 2px;
        background: var(--orange);
        transform: scaleX(0);
        transition: transform .25s;
        border-radius: 2px;
    }
    .site-navbar .navbar-nav .nav-item .nav-link:hover,
    .site-navbar .navbar-nav .nav-item .nav-link.active-link {
        color: #fff !important;
    }
    .site-navbar .navbar-nav .nav-item .nav-link:hover::after,
    .site-navbar .navbar-nav .nav-item .nav-link.active-link::after {
        transform: scaleX(1);
    }
    .navbar-cta {
        background: var(--orange);
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 9px 22px !important;
        border-radius: 5px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        transition: background .25s !important;
    }
    .navbar-cta::after { display: none !important; }
    .navbar-cta:hover { background: var(--orange-dark) !important; color: #fff !important; }
    .navbar-toggler {
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 5px;
        padding: 6px 10px;
        outline: none !important;
        box-shadow: none !important;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* =====================================================
       PRIMARY BUTTON (used across pages)
    ===================================================== */
    .primary-btn {
        display: inline-block;
        background: var(--orange);
        color: #fff !important;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 14px 36px;
        border-radius: 5px;
        border: 2px solid var(--orange);
        transition: all .3s;
        cursor: pointer;
    }
    .primary-btn:hover {
        background: var(--orange-dark);
        border-color: var(--orange-dark);
    }

    /* =====================================================
       FOOTER
    ===================================================== */
    .site-footer {
        background: var(--dark);
        color: #aaa;
        padding-top: 70px;
    }
    .footer-brand img {
        height: 52px;
        width: auto;
        object-fit: contain;
        margin-bottom: 18px;
        filter: brightness(1.1);
    }
    .footer-brand p {
        font-size: 14px;
        color: #888;
        line-height: 1.8;
        margin-bottom: 20px;
        max-width: 300px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px; height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.12);
        color: #aaa;
        font-size: 14px;
        margin-right: 8px;
        transition: all .3s;
    }
    .footer-social a:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        transform: translateY(-3px);
    }
    .footer-heading {
        font-family: var(--font-c);
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 22px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--orange);
        display: inline-block;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a {
        color: #888;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color .25s, gap .25s;
    }
    .footer-links li a::before {
        content: '\f105';
        font-family: FontAwesome;
        color: var(--orange);
        font-size: 12px;
    }
    .footer-links li a:hover { color: #fff; gap: 12px; }
    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
    }
    .footer-contact-item .icon {
        width: 36px; height: 36px;
        background: rgba(8,145,223,0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange);
        font-size: 15px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .footer-contact-item .info small {
        display: block;
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }
    .footer-contact-item .info a,
    .footer-contact-item .info span {
        font-size: 14px;
        color: #ccc;
        font-weight: 600;
    }
    .footer-contact-item .info a:hover { color: var(--orange); }
    .footer-services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .footer-services-grid a {
        font-size: 13px;
        color: #888;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: color .25s;
    }
    .footer-services-grid a::before {
        content: '\f00c';
        font-family: FontAwesome;
        color: var(--orange);
        font-size: 10px;
        flex-shrink: 0;
    }
    .footer-services-grid a:hover { color: #fff; }
    .footer-bottom {
        margin-top: 55px;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 22px 0;
    }
    .footer-bottom p {
        font-size: 13px;
        color: #555;
        margin: 0;
    }
    .footer-bottom a { color: var(--orange); }
    .footer-bottom a:hover { color: #fff; }
    .footer-bottom-links a {
        font-size: 13px;
        color: #555;
        margin-left: 20px;
        transition: color .25s;
    }
    .footer-bottom-links a:hover { color: var(--orange); }

    /* =====================================================
       SCROLL TO TOP
    ===================================================== */
    .scroll-top {
        position: fixed;
        bottom: 28px; right: 28px;
        width: 44px; height: 44px;
        background: var(--orange);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        z-index: 999;
        opacity: 0;
        transform: translateY(20px);
        transition: all .35s;
        box-shadow: 0 4px 20px rgba(8,145,223,0.4);
        cursor: pointer;
    }
    .scroll-top.show { opacity: 1; transform: translateY(0); }
    .scroll-top:hover { background: var(--orange-dark); color: #fff; }

    /* =====================================================
       FLOATING ACTION BUTTONS (FAB)
    ===================================================== */
    .fab-wrap {
        position: fixed;
        bottom: 90px;
        right: 28px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 998;
    }
    .fab-btn {
        width: 50px; height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        transition: all .3s;
        position: relative;
    }
    .fab-btn:hover { transform: scale(1.12); color: #fff; }
    .fab-btn::before {
        content: attr(data-tip);
        position: absolute;
        right: 58px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(13,13,13,0.9);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s;
        letter-spacing: .5px;
    }
    .fab-btn:hover::before { opacity: 1; }
    .fab-wa  { background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    .fab-wa:hover  { background: #1ebe5d; box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
    .fab-call { background: var(--orange); box-shadow: 0 4px 20px rgba(8,145,223,0.45); }
    .fab-call:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(8,145,223,0.55); }
    /* Pulse ring animation on WhatsApp */
    .fab-wa::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid #25d366;
        animation: fab-pulse 2s ease-out infinite;
        opacity: 0;
    }
    @keyframes fab-pulse {
        0%   { transform: scale(1);   opacity: .6; }
        100% { transform: scale(1.6); opacity: 0; }
    }

    /* =====================================================
       PAGE LOADER
    ===================================================== */
    #page-loader {
        position: fixed;
        inset: 0;
        background: var(--dark);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity .5s;
    }
    #page-loader.fade-out { opacity: 0; pointer-events: none; }
    .loader-inner {
        text-align: center;
    }
    .loader-ring {
        width: 54px; height: 54px;
        border: 3px solid rgba(255,255,255,0.08);
        border-top-color: var(--orange);
        border-radius: 50%;
        animation: spin .8s linear infinite;
        margin: 0 auto 16px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .loader-text {
        font-family: var(--font-c);
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 3px;
        text-transform: uppercase;
    }
    .loader-text span { color: var(--orange); }

    /* =====================================================
       HAMBURGER TOGGLE
    ===================================================== */
    .drawer-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 38px; height: 38px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 7px;
        padding: 8px;
        cursor: pointer;
        margin-left: auto;
        position: relative;
        z-index: 1055;
        flex-shrink: 0;
    }
    .drawer-toggle .bar {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: all .35s cubic-bezier(.77,0,.175,1);
        transform-origin: center;
    }
    .drawer-toggle.open { background: rgba(8,145,223,0.15); border-color: rgba(8,145,223,0.4); }
    .drawer-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .drawer-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .drawer-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* =====================================================
       MOBILE DRAWER
    ===================================================== */
    #drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.65);
        z-index: 1998;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity .4s;
    }
    #drawer-overlay.open { opacity: 1; }
    #mobile-drawer {
        position: fixed;
        top: 0; right: -360px;
        width: 320px;
        max-width: 88vw;
        height: 100%;
        background: #0d0d0d;
        z-index: 1999;
        transition: right .42s cubic-bezier(.77,0,.175,1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        box-shadow: -8px 0 40px rgba(0,0,0,0.6);
    }
    #mobile-drawer.open { right: 0; }
    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        background: #111;
        flex-shrink: 0;
    }
    .drawer-header .d-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .drawer-header .d-brand img {
        height: 38px;
        width: auto;
        object-fit: contain;
        filter: brightness(1.1);
    }
    .drawer-header .d-brand-text {
        font-family: var(--font-c);
        font-size: 18px;
        font-weight: 900;
        color: #fff;
        line-height: 1.1;
    }
    .drawer-header .d-brand-text span {
        display: block;
        font-size: 10px;
        color: var(--orange);
        letter-spacing: 3px;
        font-weight: 600;
    }
    .drawer-close {
        width: 34px; height: 34px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #aaa;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .25s;
        flex-shrink: 0;
    }
    .drawer-close:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
    .drawer-nav {
        padding: 24px 22px 20px;
        flex: 1;
    }
    .drawer-nav-tag {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #555;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 16px;
        border-radius: 10px;
        color: #ccc;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
        transition: all .25s;
        position: relative;
        overflow: hidden;
    }
    .drawer-nav a .d-nav-icon {
        width: 34px; height: 34px;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange);
        font-size: 14px;
        flex-shrink: 0;
        transition: all .25s;
    }
    .drawer-nav a:hover,
    .drawer-nav a.active-drawer {
        background: rgba(8,145,223,0.1);
        color: #fff;
        padding-left: 20px;
    }
    .drawer-nav a:hover .d-nav-icon,
    .drawer-nav a.active-drawer .d-nav-icon {
        background: var(--orange);
        color: #fff;
    }
    .drawer-nav a .d-nav-arrow {
        margin-left: auto;
        font-size: 11px;
        color: #444;
        transition: color .25s;
    }
    .drawer-nav a:hover .d-nav-arrow { color: var(--orange); }
    .drawer-info {
        padding: 18px 22px;
        background: #111;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .drawer-info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }
    .drawer-info-item:last-child { margin-bottom: 0; }
    .drawer-info-item .d-icon {
        width: 32px; height: 32px;
        background: rgba(8,145,223,0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange);
        font-size: 13px;
        flex-shrink: 0;
    }
    .drawer-info-item .d-text {
        font-size: 13px;
        color: #aaa;
        font-weight: 600;
        line-height: 1.4;
    }
    .drawer-info-item .d-text a { color: #aaa; }
    .drawer-info-item .d-text a:hover { color: var(--orange); }
    .drawer-footer {
        padding: 18px 22px 24px;
        border-top: 1px solid rgba(255,255,255,0.06);
        flex-shrink: 0;
    }
    .drawer-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 14px 20px;
        border-radius: 8px;
        transition: background .25s;
        margin-bottom: 18px;
    }
    .drawer-cta:hover { background: var(--orange-dark); color: #fff; }
    .drawer-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .drawer-social a {
        width: 38px; height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.1);
        color: #888;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .25s;
    }
    .drawer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }

    /* =====================================================
       RESPONSIVE
    ===================================================== */
    @media(max-width: 991px) {
        body { padding-top: 64px; }
        .site-topbar { display: none !important; }
        .site-navbar { height: 64px; }
        .drawer-toggle { display: flex; }
        .footer-services-grid { grid-template-columns: 1fr; }
    }