/* locate-scammers.html */
/* ===== NEW NAVIGATION STYLES ===== */

        /* Desktop dropdown nav */
        .nav-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--accent, #c8a84e);
        }
        .nav-link .dropdown-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .nav-list > li:hover .dropdown-arrow,
        .nav-list > li.dropdown-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Desktop dropdown panel */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white, #fff);
            border: 1px solid var(--gray-200, #e5e7eb);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 1000;
        }
        .nav-list > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--gray-50, #f9fafb);
            color: var(--accent, #c8a84e);
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 900px) {
            .nav { display: none !important; }
        }

        /* ===== BURGER / MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
            gap: 5px;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary, #0a1628);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        @media (max-width: 900px) {
            .mobile-toggle { display: flex; }
        }

        /* Burger X animation */
        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white, #fff);
            z-index: 1060;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-header .logo-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--primary, #0a1628);
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50, #f9fafb);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-menu-close:hover {
            background: var(--gray-200, #e5e7eb);
        }

        .mobile-menu-body {
            padding: 1rem 0;
            flex: 1;
        }

        /* Mobile nav items */
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100, #f3f4f6);
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        .mobile-nav-link:hover {
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-link .mobile-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            color: var(--gray-400, #9ca3af);
        }
        .mobile-nav-item.open .mobile-nav-link .mobile-arrow {
            transform: rotate(180deg);
            color: var(--accent, #c8a84e);
        }
        .mobile-nav-item.open > .mobile-nav-link {
            color: var(--accent, #c8a84e);
        }

        /* Mobile sub-menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            max-height: 300px;
        }
        .mobile-sub-menu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600, #4b5563);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .mobile-sub-menu a:hover {
            color: var(--accent, #c8a84e);
            background: var(--gray-100, #f3f4f6);
        }

        /* Mobile menu divider & secondary links */
        .mobile-menu-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 0.75rem 1.5rem;
        }
        .mobile-secondary-links {
            padding: 0.25rem 0;
        }
        .mobile-secondary-links a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-500, #6b7280);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: color 0.2s ease;
        }
        .mobile-secondary-links a:hover {
            color: var(--accent, #c8a84e);
        }

        /* Mobile menu footer CTA */
        .mobile-menu-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-footer .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--accent, #c8a84e);
            color: var(--white, #fff);
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .mobile-menu-footer .btn:hover {
            background: #d4edf4;
            color: var(--primary, #0a1628);
            transform: translateY(-2px);
        }

        /* Prevent body scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ===== END NAV STYLES ===== */


        /* Logo image styles */
        .logo-img {
            height: 110px;
            width: auto;
            display: block;
        }

        /* Mobile logo fix - prevent stretching on mobile devices */
        @media (max-width: 900px) {
            .logo-img {
                height: 70px;
                max-width: 220px;
                object-fit: contain;
            }
        }

        /* Reduce Book a Call button padding to give logo more space */
        .header-actions .btn-primary {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Book a Call button hover override */
        .header-actions .btn-primary:hover {
            background: #d4edf4 !important;
            color: var(--primary, #0a1628) !important;
        }
    
        /* ===== SECURITY BANNER (imported from our-team.html) ===== */

/* --- Security Banner --- */
        .ob-cobra-banner {
            position: relative;
            min-height: 720px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--primary, #0a1628);
            padding: 5rem 0;
        }
        .ob-cobra-bg {
            position: absolute;
            inset: 0;
            background:
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1400&q=80') center/cover no-repeat;
            opacity: 0.35;
        }
        .ob-cobra-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.4) 40%, rgba(200,168,78,0.15) 100%);
        }
        .ob-cobra-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }
        .ob-cobra-text {
            padding: 4rem 0;
        }
        .ob-cobra-text blockquote {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(1.375rem, 2.5vw, 1.75rem);
            font-style: italic;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            margin: 0 0 2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent, #c8a84e);
            font-weight: 700;
        }
        .ob-cobra-text p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2.5rem;
        }
        .ob-cobra-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        .ob-cobra-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(200, 168, 78, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .ob-cobra-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .ob-cobra-card h3 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-cobra-card .card-desc {
            font-size: 1rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2rem;
        }

        
        /* --- Security Banner responsive (imported) --- */
        @media (max-width: 900px) {
            .ob-cobra-content { grid-template-columns: 1fr; gap: 2rem; }
            .ob-cobra-text { padding: 3rem 0 0; }
        }
        @media (max-width: 600px) {
            .ob-cobra-card { padding: 2rem; }
        }

/* Entrance animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }